Alleyf
Alleyf
全部文章
分类
归档
标签
去牛客网
登录
/
注册
Alleyf的博客
全部文章
(共5篇)
题解 | #完数VS盈数#
// // Created by alleyf on 2023/8/17. // #include<bits/stdc++.h> using namespace std; int judge_EG(int num) { int sum = 0; for (int i ...
2023-08-17
0
337
题解 | #超简单代码——简单密码#
方法1: // // Created by alleyf on 2023/6/26. // #include<bits/stdc++.h> using namespace std; int main() { string s; while (getline(cin, s)...
2023-06-26
1
329
题解 | #找位置#
#include<bits/stdc++.h> using namespace std; int main() { string s; map<char, vector<int>> sm; vector<char> orde...
2023-06-25
1
353
题解 | #xxx定律#
// // Created by alleyf on 2023/6/24. // #include<bits/stdc++.h> using namespace std; int xxx_law(int& num, int& cnt) { if (num == 1) { ...
2023-06-24
0
379
题解 | #剩下的树#
// // Created by alleyf on 2023/6/24. // #include<bits/stdc++.h> using namespace std; const int MAXL = 100001; int main() { bool flag[MAXL]...
2023-06-24
0
271