总结:自己还是太弱了,只做了签到题。聚聚们太强了。
题目地址:hdu
1001 : ^ & ^ (签到题)
#include <bits/stdc++.h>
using namespace std;
typedef long long LL;
const int N = 100010;
unsigned int a, b;
int main()
{
int t;
cin>> t;
while(t--){
cin>> a >> b;
LL res = a & b;
if(!res) cout << 1 << endl;
else cout<< res << endl;
}
return 0;
}
1002: array

1003:K-th occurrence
题解:

- 代码:代码在这
1004:path

1005: huntian oy

1006:Shuffle Card (签到题)
1007: Windows Of CCPC (签到题)
1008:Fishing Master

1009: Kaguya

1010: Touma Kazusa’s function

1011: sakura

总结了个人在编程竞赛中的不足,并分享了部分签到题的代码实现,包括位运算、数组操作等基础算法题。通过实战经验反思自我,强调了持续学习和提升的重要性。
732

被折叠的 条评论
为什么被折叠?



