哈机米_那没鲁多
哈机米_那没鲁多
全部文章
分类
归档
标签
去牛客网
登录
/
注册
哈机米_那没鲁多的博客
全部文章
(共5篇)
这是啥博弈
/*先放的人往桌子中心放,后放的我只要对称放即可,不不止是对矩形,所有对称图形即可*/ #include<bits/stdc++.h> using namespace std; int main(){ int a,b,r; cin>>a>>b>...
2025-12-10
1
26
题解 | 没有上司的舞会
#include<bits/stdc++.h> using namespace std; const int N=2e5+6; int value[N]; int dp[N][2]; bool root[N]; vector<vector<int>>tree; v...
2025-12-09
0
29
题解 | GCPC总决赛
#include<iostream> using namespace std; const int N = 15; int n; int da[N], yx[N]; bool dy[N]; int cun = 0; int v = 0; int p = 0; int f = 0; voi...
2025-11-11
0
32
题解 | 简单密码
#include <iostream> #include<string> using namespace std; /*a='97',A='65',0='48'*/ int s2i(char a){ int cun; if(a=='a'||a=='b'...
2025-03-19
0
89
题解 | 密码截取
#include <iostream> #include<string> /*因为只有2500个所以可以去模拟*/ using namespace std; bool check(int i,int j,string a){ int cun=i+j; for(...
2025-03-17
0
94