結果
問題 | No.1553 Lovely City |
ユーザー | tails |
提出日時 | 2021-06-18 22:00:00 |
言語 | cLay (20240714-1) |
結果 |
WA
|
実行時間 | - |
コード長 | 674 bytes |
コンパイル時間 | 3,492 ms |
コンパイル使用メモリ | 185,912 KB |
実行使用メモリ | 30,360 KB |
最終ジャッジ日時 | 2024-07-05 15:16:11 |
合計ジャッジ時間 | 11,210 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | AC | 28 ms
21,120 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
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 | - |
ソースコード
{ VI resu,resv; graph g; int @n,@m; VI u(m),v(m); rd((u,v)(m)); g.setDirectEdge(n+1,m,u.data(),v.data()); VI ss(n+1); int sn=g.scc(ss.data()); // VVI vvi(sn); vector<VI> vvi(sn); rep(i,1,n+1){ vvi[ss[i]].push_back(i); } rep(j,sn){ int n=vvi[j].size(); if(n>1){ rep(k,n-1){ resu.push_back(vvi[j][k]); resv.push_back(vvi[j][k+1]); } resu.push_back(vvi[j][n-1]); resv.push_back(vvi[j][0]); } } unionFind uf; uf.walloc(n+1,1); rep(i,m){ int su=ss[u[i]]; int sv=ss[v[i]]; if(uf(su,sv)){ resu.push_back(vvi[su][0]); resv.push_back(vvi[sv][0]); } } wt(int(resu.size())); rep(i,resu.size()){ wt(resu[i],resv[i]); } }