小路绫ayaya
小路绫ayaya
全部文章
分类
归档
标签
去牛客网
登录
/
注册
小路绫ayaya的博客
全部文章
(共45篇)
题解 | 查找学生信息
#include <iostream> #include <map> using namespace std; int main(){ ios_base::sync_with_stdio(false); cin.tie(nullptr); int ...
2026-03-23
0
8
题解 | 畅通工程
#include <iostream> #include <vector> #include <algorithm> using namespace std; struct road{ int v1, v2, cost; }; bool my_gre...
2026-03-18
0
13
题解 | 递推数列
#include <iostream> #include <vector> using namespace std; const int mod = 10000; int main() { ios_base::sync_with_stdio(false); ...
2026-03-18
1
13
题解 | 完数VS盈数
#include <iostream> #include <vector> using namespace std; int main() { vector<int> E; vector<int> G; for(int i ...
2026-03-18
0
16
题解 | 最小邮票数
#include <iostream> #include <vector> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); ...
2026-03-18
0
16
题解 | 质因数的个数
#include <iostream> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); int N; while(cin >...
2026-03-14
0
21
题解 | 约数的个数
#include <iostream> #include <cmath> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); i...
2026-03-14
0
15
题解 | 农夫、羊、菜和狼的故事
#include <iostream> using namespace std; int main() { cout << "sheep_go" << "\n"; cout << "n...
2026-03-14
0
13
题解 | 反序数
#include <iostream> using namespace std; int main() { int i = 1000; while(i * 9 < 10000){ int x = i; int re_i = 0; ...
2026-03-14
0
16
题解 | Flipping Pancake
#include <iostream> #include <vector> #include <algorithm> using namespace std; int main(){ ios_base::sync_with_stdio(false); ...
2026-03-14
0
15
首页
上一页
1
2
3
4
5
下一页
末页