UOJ #350. 新年的XOR
Posted r-q-r-q
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UOJ #350. 新年的XOR相关的知识,希望对你有一定的参考价值。
Link
构造找规律
若 x 为偶数 L = x - 4 , R = x , 因为(x - 4) ^ (x - 3) = (x - 2) ^ (x - 1) = 1
若x 为奇数 L = x - 3 , R = x - 1 因为(x - 3) ^ (x - 2) = 1; (x - 1) ^ 1 = x;
#include<iostream>
#include<cstdio>
using namespace std;
int main()
{
int T; cin >> T;
while(T--)
{
long long n;
cin >> n;
if(n == 0) cout << 1 << ' ' << 3 << '
';
else if(n == 1) cout << 2 << ' ' << 3 << '
';
else if(n == 2) cout << 3 << ' ' << 5 << '
';
else if(n == 3) cout << 1 << ' ' << 2 << '
';
else if(n == 4) cout << 1 << ' ' << 4 << '
';
else if(n % 2 == 0) cout << n - 4 << ' ' << n << '
';
else if(n % 2 == 1) cout << n - 3 << ' ' << n - 1 << '
';
}
return 0;
}
以上是关于UOJ #350. 新年的XOR的主要内容,如果未能解决你的问题,请参考以下文章