2023年3月5日
摘要: #include<bits/stdc++.h> using namespace std; int prime[1000006],cnt; bool st[1000006]; void get_prime(int n){ for(int i=2;i<=n;i++){ if(!st[i]){ prime 阅读全文
posted @ 2023-03-05 16:35 IR101 阅读(2) 评论(0) 推荐(0) 编辑
摘要: NEW GAME #include <bits/stdc++.h> using namespace std; const int N=1010; int n,m; int dp[N]; int d[N]; vector<int>g[N]; vector<int>ans; void topo() // 阅读全文
posted @ 2023-03-05 15:27 IR101 阅读(7) 评论(0) 推荐(0) 编辑