程昱同学
程昱同学
全部文章
分类
归档
标签
去牛客网
登录
/
注册
程昱同学的博客
全部文章
(共127篇)
题解 | #坠落的蚂蚁#
#include <algorithm> #include <bits/stdc++.h> #include <utility> #include <vector> /*除了那个不动的蚂蚁A以外 1.剩下的蚂蚁只有四种可能: 1.1 ...
2023-01-24
0
373
题解 | #鸡兔同笼#
#include <bits/stdc++.h> using namespace std; int main() { int a;//总的脚数 设鸡有x只,兔有y只,有2*x+4*y=a while(cin>>a) { int maxn...
2023-01-24
0
327
题解 | #八皇后#
#include <bits/stdc++.h> using namespace std; vector<string> res; //判断一下如果皇后放在坐标(x,y)会不会与现有皇后有冲突 bool noattack(int x, int y, int chess[][9...
2023-01-24
0
339
题解 | #最大上升子序列和#
#include <bits/stdc++.h> #include <climits> #include <vector> using namespace std; int main() { int n; while (cin >> n...
2023-01-23
0
275
题解 | #拦截导弹#
#include <bits/stdc++.h> #include <vector> using namespace std; int main() { int num; while (cin >> num) { vector<...
2023-01-23
0
339
题解 | #字符串排序#
#include <bits/stdc++.h> using namespace std; struct cc { char c; bool ischange; }; int main() { string s; while (getline(cin, s...
2023-01-23
0
428
题解 | #采药#
#include <bits/stdc++.h> #include <vector> using namespace std; //定义一个草药的结构体 struct st{ int Time;//采这个草药的时间 int value;//这个草药的价值 };...
2023-01-23
0
351
题解 | #合唱队形#
#include <bits/stdc++.h> using namespace std; vector<int>h; int n; int long_up(int l,int r) { int maxl=1; int dp[100]; for(int...
2023-01-23
0
362
题解 | #求平均年龄#
#include <bits/stdc++.h> using namespace std; int main() { int n; while(cin>>n) { double sum=0; double data; ...
2023-01-23
0
310
题解 | #子串计算#
#include <bits/stdc++.h> using namespace std; map<string,int>cc; int main() { string s; while(cin>>s) { //遍历所有子串...
2023-01-23
0
297
首页
上一页
4
5
6
7
8
9
10
11
12
13
下一页
末页