摘要:
XOR Clique(按位异或): 传送门:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=4057 准备:异或:参加运算的两个数据,按二进制位进行“异或”运算。 运算规则:0^0=0, 0^1=1, 1^0=1, 1^1=0 阅读全文
摘要:
Halting Problem: 传送门:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=4049 总结一个小规律:题目中给的那个取mod的那个数N, 可能就是循环的边界; 本题AC代码: 1 /* */ 2 # includ 阅读全文