蓝桥杯2021年第十二届国赛真题-翻转括号序列
摘要:解题思路:注意事项:参考代码:#include<iostream>
#include<cstring>
#include<string>
#include<algorithm>
#inclu……
蓝桥杯2021年第十二届国赛真题-异或变换
摘要:打表发现
当n=1时,异或1次循环
n=2时,2次循环
n=3,4次
n=4,4次
n=5,8次
... ...
显然可得,当数串长度为n时,异或2^(log2(n)+1)次即可重新得到……
蓝桥杯2021年第十二届国赛真题-异或变换
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>
using namespace std;
int main()
{
long long t,n,i;
……
第十二届国赛真题-异或变换
摘要:解题思路:存在一个最小的整数x,使得pow(2,x)>=n,则每隔pow(2,x)就会循环一次。注意事项:参考代码:#include<iostream>#include<cstring>using n……