Lihyu
Lihyu
全部文章
分类
归档
标签
去牛客网
登录
/
注册
Lihyu的博客
全部文章
(共5篇)
题解 | 小红的整数配对
#include <bits/stdc++.h> using namespace std; #define int long long signed main(){ int n,k; cin >> n >>k; int score = 0...
2026-03-13
0
13
题解 | 谐距下标对
#include <bits/stdc++.h> using namespace std; int main(){ int n; cin >> n; long long ans = 0; vector <int> arr(n); ...
2026-03-04
0
21
题解 | 乒乓球
#include <bits/stdc++.h> using namespace std; void solve(string s, int limit) { int w = 0, l = 0; for (char c : s) { if (c == ...
2026-02-26
0
26
题解 | 穷哈哈~
#include <iostream> using namespace std; int compare(int num, int max){ if(num > max) max = num; return max; } int main() { int...
2026-02-11
0
32
题解 | 凯撒加密
#include <iostream> #include <string> using namespace std; int main() { int n; cin >> n; string s; cin >> s; ...
2026-02-05
0
24