Chri_K

2020年10月27日

tarjan详解

摘要: #include<cstdio> #include<algorithm> #include<string.h> using namespace std; struct node { int v,next; }edge[1001]; int DFN[1001],LOW[1001]; int stack 阅读全文

posted @ 2020-10-27 19:16 Chri_K 阅读(26) 评论(0) 推荐(0) 编辑
魔术棋子(记忆化搜索)

摘要: #include<iostream> using namespace std; int n,m,k,ans; int map[110][110]; int vis[110][110][110]; int main() { cin>>n>>m>>k; for(int i=1;i<=n;i++) { f 阅读全文

posted @ 2020-10-27 17:49 Chri_K 阅读(94) 评论(0) 推荐(0) 编辑
对拍(Linux)

摘要: #include<cstdio> #include<cstdlib> using namespace std; int main(){ while(1){ system("./gen"); system("./bf"); system("./right"); if(system("diff bf.o 阅读全文

posted @ 2020-10-27 14:56 Chri_K 阅读(2) 评论(0) 推荐(0) 编辑
并查集详解

摘要: #include<iostream> #include<cstdio> #include<cstring> #include<cmath> #include<algorithm> using namespace std; int pre[1010]; //里面全是掌门 int unionsearch 阅读全文

posted @ 2020-10-27 14:00 Chri_K 阅读(4) 评论(0) 推荐(0) 编辑
日期(csp2019)

摘要: #include <iostream> using namespace std; int a,c; char b; int ans; int main() { cin>>a>>b>>c; if(a>12||a==0) { ans++; } if(a>12||a==0) { if(c>31) { an 阅读全文

posted @ 2020-10-27 11:35 Chri_K 阅读(107) 评论(0) 推荐(0) 编辑
神奇的数字(magic)

摘要: #include <iostream> #include<cstring> using namespace std; int dp[1000050]; int main() { memset(dp,0x3f3f,sizeof dp); dp[1] = 1; int n; cin>>n; while( 阅读全文

posted @ 2020-10-27 11:04 Chri_K 阅读(99) 评论(0) 推荐(0) 编辑