結果
問題 | No.1553 Lovely City |
ユーザー | 👑 potato167 |
提出日時 | 2021-06-18 23:25:16 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 221 ms / 2,000 ms |
コード長 | 3,303 bytes |
コンパイル時間 | 2,537 ms |
コンパイル使用メモリ | 228,516 KB |
実行使用メモリ | 58,672 KB |
最終ジャッジ日時 | 2024-06-22 21:30:27 |
合計ジャッジ時間 | 10,494 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
12,624 KB |
testcase_01 | AC | 5 ms
12,596 KB |
testcase_02 | AC | 192 ms
58,672 KB |
testcase_03 | AC | 6 ms
12,768 KB |
testcase_04 | AC | 5 ms
12,676 KB |
testcase_05 | AC | 6 ms
12,720 KB |
testcase_06 | AC | 6 ms
12,660 KB |
testcase_07 | AC | 5 ms
12,612 KB |
testcase_08 | AC | 132 ms
29,344 KB |
testcase_09 | AC | 142 ms
30,196 KB |
testcase_10 | AC | 165 ms
39,616 KB |
testcase_11 | AC | 103 ms
29,652 KB |
testcase_12 | AC | 185 ms
44,460 KB |
testcase_13 | AC | 102 ms
26,744 KB |
testcase_14 | AC | 118 ms
30,248 KB |
testcase_15 | AC | 119 ms
32,156 KB |
testcase_16 | AC | 131 ms
31,060 KB |
testcase_17 | AC | 131 ms
34,028 KB |
testcase_18 | AC | 213 ms
44,712 KB |
testcase_19 | AC | 215 ms
44,732 KB |
testcase_20 | AC | 219 ms
44,844 KB |
testcase_21 | AC | 204 ms
44,740 KB |
testcase_22 | AC | 204 ms
44,636 KB |
testcase_23 | AC | 221 ms
44,820 KB |
testcase_24 | AC | 209 ms
44,824 KB |
testcase_25 | AC | 214 ms
44,760 KB |
testcase_26 | AC | 208 ms
44,604 KB |
testcase_27 | AC | 207 ms
44,616 KB |
ソースコード
#include <bits/stdc++.h> #pragma GCC optimize("Ofast") using namespace std; using std::cout; using std::cin; using std::endl; using ll=long long; using ld=long double; ll I=1167167167167167167; ll Q=998244353; #define rep(i,a) for (ll i=0;i<a;i++) template<class T> using _pq = priority_queue<T, vector<T>, greater<T>>; template<class T> ll LB(vector<T> &v,T a){return lower_bound(v.begin(),v.end(),a)-v.begin();} template<class T> ll UB(vector<T> &v,T a){return upper_bound(v.begin(),v.end(),a)-v.begin();} template<class T> bool chmin(T &a,const T &b){if(a>b){a=b;return 1;}else return 0;} template<class T> bool chmax(T &a,const T &b){if(a<b){a=b;return 1;}else return 0;} template<class T> void So(vector<T> &v) {sort(v.begin(),v.end());} template<class T> void Sore(vector<T> &v) {sort(v.begin(),v.end(),[](T x,T y){return x>y;});} template<class T> void print_tate(vector<T> &v) {rep(i,v.size()) cout<<v[i]<<"\n";} void yneos(bool a){if(a) cout<<"Yes"<<"\n"; else cout<<"No"<<"\n";} #define MAX_N 200200 int order[MAX_N]; vector<vector<int>> G(MAX_N); vector<vector<int>> H(MAX_N); int ran[MAX_N]; int r=0; void dfs(int a,int &now){ if(order[a]!=-1) return ; order[a]=-2; for(auto x:G[a]){ dfs(x,now); } order[a]=now; now++; } void dfs_2(int a){ if(ran[a]!=-1) return ; ran[a]=r; for(auto x:H[a]) dfs_2(x); } namespace po167{ struct UFtree { std::vector<int> par; std::vector<int> wei; UFtree(int n):par(n),wei(n){ for(int i=0;i<n;i++){ wei[i]=1,par[i]=i; } } //根っこを返す int root(int a){ if(a==par[a]) return a; return par[a]=root(par[a]); } //trueなら1,falseなら0 int same(int a,int b){ if(root(a)==root(b)) return 1; else return 0; } //a,bが違う根っこの元なら結合する,結合したらtrueを返す bool unite(int a,int b){ a=root(a),b=root(b); if(a==b) return false; if(wei[a]<wei[b]) std::swap(a,b); par[b]=a; wei[a]+=wei[b]; return true; } }; } using po167::UFtree; //おちこんだりもしたけれど、私はげんきです。 int main() { ios::sync_with_stdio(false); cin.tie(nullptr); //input int N,M; cin>>N>>M; UFtree A(N); rep(i,M){ int a,b; cin>>a>>b; a--,b--; if(a==b) continue; G[a].push_back(b); H[b].push_back(a); A.unite(a,b); } //scc vector<pair<int,int>> ans; rep(i,N) order[i]=-1,ran[i]=-1; int now=0; rep(i,N){ dfs(i,now); } int p[N]; rep(i,N) p[order[i]]=i; //cout<<endl; rep(i,N){ int a=p[N-1-i]; if(ran[a]==-1) dfs_2(a),r++; } vector<vector<int>> F(r); map<int,int> m; map<int,vector<int>> v; rep(i,N){ int a=ran[i]; F[a].push_back(i); //cout<<a<<" "; } for(int i=0;i<r;i++){ int a=A.root(F[i][0]); } rep(i,r){ int L=F[i].size(); //cout<<L<<endl; int a=A.root(F[i][0]); if(L==1) m[a]|=0; else m[a]|=1; rep(j,L) v[a].push_back(F[i][j]); } vector<int> X; for(auto x:v){ auto P=x.second; int L=x.second.size(); if(m[x.first]==0){ //cout<<"W"<<endl; rep(j,L-1) ans.push_back({P[j],P[j+1]}); } else{ //cout<<"W"<<endl; rep(j,L) X.push_back(P[j]); } } int Y=X.size(); //cout<<Y<<endl; rep(i,Y-1) ans.push_back({X[i],X[i+1]}); if(Y>1) ans.push_back({X[Y-1],X[0]}); //output cout<<ans.size()<<"\n"; rep(i,ans.size()){ cout<<ans[i].first+1<<" "<<ans[i].second+1<<"\n"; } return 0; }