Youlinw
Youlinw
全部文章
分类
归档
标签
去牛客网
登录
/
注册
Youlinw的博客
全部文章
(共2篇)
题解 | #还是畅通工程#
#include <bits/stdc++.h> using namespace std; const int N = 5010; struct node { int a, b, w; } no[N]; int n, m; int p[N]; int find(int x) { i...
2024-02-24
1
268
题解 | #玛雅人的密码#
#include <bits/stdc++.h> using namespace std; const int N = 20; int n; string start; bool check(string s) { int len = s.length(); for (int i ...
2024-02-23
1
266