whx__xx
whx__xx
全部文章
分类
归档
标签
去牛客网
登录
/
注册
whx_xx的博客
o.O
全部文章
(共4篇)
题解 | 一封奇怪的信
#include<bits/stdc++.h> #include <unordered_map> #define fi first #define se second #define pb push_back using namespace std; /* debug用 ...
2025-05-21
0
12
题解 | 游游的除2操作
#include <iostream> #include <set> using namespace std; const int N = 1e5 + 10; int n; int main() { cin >> n; multiset<...
2025-05-20
0
12
题解 | 小美走公路
#include <iostream> using namespace std; const int N = 1e5 + 10; long long n, a[N]; int main() { cin >> n; for (int i = 1; i &l...
2025-05-20
0
10
题解 | 循环求和
#include <iostream> using namespace std; int main() { int t; cin >> t; while (t -- ) { long long l, r; cin &g...
2025-05-20
0
9