- 博客(19)
- 收藏
- 关注
原创 Codeforces Round #813 (Div. 2) C. Sort Zero 1712 C
CF 1712 C Codeforces Round #813 (Div. 2) C.Sort Zero
2022-08-15 00:23:29
536
原创 洛谷P1892 团伙
题目链接洛谷P1892纪念第一道自主完成的绿题。本题我的方法相对简单,易懂,比较友好。#include <bits/stdc++.h> //本题的题意描述的不太清楚,也可能是我的理解出了问题using namespace std; // 实际就是想问能分成几组 ,同一个祖宗节点的集合算一组int f[1010]; //每个节点的祖宗节点int a[1010][1010]; //a[x][y] =1 代表y是x的敌人 本题数据范围不大,这种做法对新手也是非常.
2022-05-10 20:06:18
222
原创 CreateProcess: No such file or directory的解决办法
因为我是在百度网盘用的别人分享的devc++下的,软件的路径是我自己选择的。但是打开时候提醒如标题所示的错误。最后我发现他的默认路径是百度网盘的路径。然后解决方法就是改回应有的路径。解决方法 tools->compiler options->directories然后把下面四个标签的目录换成你自己的路径。...
2022-03-19 09:42:27
5825
1
原创 出栈合法性
题目 计蒜客T1516题目链接题目链接出栈序列的合法性的解释 可以看这篇文章#include <bits/stdc++.h>using namespace std;int main(){ int x;stack<int> a; while (cin >> x && x != 0) { while (!a.empty()) { a.pop(); //初始化 } int c[1..
2022-03-13 20:53:07
472
1
原创 POJ-1969-Count on Canton
#include <algorithm>#include <iostream>#include <cstdio>using namespace std;int main(){ ios::sync_with_stdio(false); int x; while (cin >> x) {int a, b; int i = 0; for (i = 1; i >= 1; i++) { if...
2022-02-21 19:38:45
102
原创 CF1623 B
#include <bits/stdc++.h>using namespace std;struct s{ int a; int b; int c; int d;}u[1010];bool cmp(s x,s y){ if(x.a==y.a) return x.b>y.b; else return x.a<y.a;}bool cmp1(s x,s y){ return x.d<.
2022-02-09 20:25:51
733
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人