标签:ret span sam main 实现 要求 col lse title
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2176
题目:
1 #include <cstdio> 2 #include <iostream> 3 using namespace std; 4 5 const int maxn = 2e5 + 7; 6 int n, ans; 7 int a[maxn]; 8 9 int main() { 10 while(cin >>n && n) { 11 ans = 0; 12 for(int i = 0; i < n; i++) { 13 cin >>a[i]; 14 ans ^= a[i]; 15 } 16 if(ans == 0) puts("No"); 17 else { 18 puts("Yes"); 19 for(int i = 0; i < n; i++) { 20 int k = ans ^ a[i]; 21 if(k < a[i]) { 22 printf("%d %d\n", a[i], k); 23 } 24 } 25 } 26 } 27 return 0; 28 }
标签:ret span sam main 实现 要求 col lse title
原文地址:https://www.cnblogs.com/Dillonh/p/8996434.html