結果
問題 | No.1553 Lovely City |
ユーザー | kotatsugame |
提出日時 | 2021-06-18 21:44:48 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,288 bytes |
コンパイル時間 | 1,190 ms |
コンパイル使用メモリ | 89,304 KB |
実行使用メモリ | 64,668 KB |
最終ジャッジ日時 | 2024-06-22 20:07:34 |
合計ジャッジ時間 | 16,047 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 7 ms
15,816 KB |
testcase_01 | AC | 7 ms
15,744 KB |
testcase_02 | AC | 35 ms
37,664 KB |
testcase_03 | AC | 8 ms
15,816 KB |
testcase_04 | AC | 8 ms
15,944 KB |
testcase_05 | AC | 9 ms
16,000 KB |
testcase_06 | AC | 7 ms
15,872 KB |
testcase_07 | AC | 7 ms
15,708 KB |
testcase_08 | AC | 408 ms
41,960 KB |
testcase_09 | WA | - |
testcase_10 | AC | 467 ms
52,684 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 367 ms
36,392 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 344 ms
44,444 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
コンパイルメッセージ
a.cpp:30:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
ソースコード
#line 1 "a.cpp" #include<iostream> #include<algorithm> using namespace std; #line 1 "/home/kotatsugame/library/graph/SCC.cpp" //Strongly Connected Components #include<vector> struct SCC{ int n; vector<int>comp,order; vector<bool>used; vector<vector<int> >G,RG; SCC(int _n=0):n(_n),comp(_n,-1),used(_n,false),G(_n),RG(_n){} void add_edge(int from,int to) { G[from].push_back(to); RG[to].push_back(from); } void copy(const vector<vector<int> >&H) { for(int i=0;i<H.size();i++) { for(int j=0;j<H[i].size();j++) { G[i].push_back(H[i][j]); RG[H[i][j]].push_back(i); } } } int operator[](int u)const{return comp[u];} void dfs(int u) { used[u]=true; for(int i=0;i<G[u].size();i++)if(!used[G[u][i]])dfs(G[u][i]); order.push_back(u); } void rdfs(int u,int cnt) { comp[u]=cnt; for(int i=0;i<RG[u].size();i++)if(comp[RG[u][i]]==-1)rdfs(RG[u][i],cnt); } int build() { for(int i=0;i<n;i++)if(!used[i])dfs(i); int cnt=0; for(int i=n-1;i>=0;i--)if(comp[order[i]]==-1)rdfs(order[i],cnt++); return cnt; } int build(vector<vector<int> >&H) { int ret=build(); H.assign(ret,vector<int>()); for(int i=0;i<n;i++) { for(int j=0;j<G[i].size();j++) { if(comp[i]!=comp[G[i][j]]) H[comp[i]].push_back(comp[G[i][j]]); } } return ret; } }; #line 5 "a.cpp" int N,M; vector<pair<int,int> >E; bool vis[2<<17]; vector<int>G[2<<17]; vector<int>vs[2<<17]; vector<pair<int,int> >now; void dfs(int u) { vis[u]=true; int f=vs[u][0]; now.push_back(make_pair(u,f)); if(vs[u].size()>=2) { for(int i=1;i<vs[u].size();i++) { E.push_back(make_pair(f,vs[u][i])); f=vs[u][i]; } E.push_back(make_pair(f,vs[u][0])); } for(int v:G[u])if(!vis[v]) { dfs(v); } } main() { cin>>N>>M; SCC P(N); for(int i=0;i<M;i++) { int u,v;cin>>u>>v; u--,v--; P.add_edge(u,v); } vector<vector<int> >H; int K=P.build(H); for(int i=0;i<N;i++)vs[P[i]].push_back(i); for(int i=0;i<K;i++)for(int v:H[i]) { G[i].push_back(v); G[v].push_back(i); } for(int i=0;i<K;i++)if(!vis[i]) { now.clear(); dfs(i); sort(now.begin(),now.end()); for(int j=0;j<now.size()-1;j++)E.push_back(make_pair(now[j].second,now[j+1].second)); } cout<<E.size()<<endl; for(pair<int,int>p:E)cout<<p.first+1<<" "<<p.second+1<<endl; }