wsd_tod
wsd_tod
全部文章
分类
归档
标签
去牛客网
登录
/
注册
wsd_tod的博客
全部文章
(共6篇)
题解 | 大撒币
#include <stdio.h> int main() { long long a,b,r; scanf("%lld %lld %lld",&a,&b,&r); if(a>=2*r&&b>...
2025-12-10
0
8
题解 | 糟糕的打谱员
#include <iostream> #include <vector> #include <algorithm> using namespace std; const int MAX_A = 11; int main() { ios::sync_wi...
2025-12-05
0
7
题解 | 构造数独
#include<iostream> using namespace std; int main() { int n; long long k; cin>>n>>k; for(int i=1;i<=n;i++) { ...
2025-12-01
0
7
题解 | 小sun的假期
#include <iostream> #include <map> using namespace std; int main() { long long n, m; cin >> n >> m; map<long l...
2025-11-27
0
9
题解 | 小红杀怪
#include <stdio.h> #include <math.h> int main() { int a,b,x,y,min=1000; scanf("%d%d%d%d",&a,&b,&x,&y);...
2025-11-26
0
10
题解 | 收集纸片
#include <stdio.h> #include <stdlib.h> #include <limits.h> #define MAX_POINTS 12 // 起点 + 最多10个纸片 + 缓冲 #define INF INT_MAX typedef s...
2025-11-17
0
17