結果

問題 No.1553 Lovely City
ユーザー momoyuumomoyuu
提出日時 2024-08-07 01:29:11
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,296 bytes
コンパイル時間 1,857 ms
コンパイル使用メモリ 128,020 KB
実行使用メモリ 29,780 KB
最終ジャッジ日時 2024-08-07 01:29:23
合計ジャッジ時間 11,046 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 40 ms
28,264 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 190 ms
17,328 KB
testcase_09 WA -
testcase_10 AC 224 ms
23,688 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 165 ms
15,116 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 174 ms
19,804 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 -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>

using namespace std;
using ll = long long;

#include<atcoder/scc>
#include<set>
#include<atcoder/dsu>
int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    int n,m;
    cin>>n>>m;
    vector<int> u(m),v(m);
    atcoder::scc_graph g(n);
    for(int i = 0;i<m;i++){
        cin>>u[i]>>v[i];
        u[i]--;v[i]--;
        g.add_edge(u[i],v[i]);
    }
    auto use = g.scc();
    vector<pair<int,int>> ans;
    vector<int> cnt(n,0);
    for(int i = 0;i<use.size();i++) for(int j:use[i]) cnt[j] = i;
    for(int i = 0;i<use.size();i++){
        int m = use[i].size();
        if(m==1) continue;
        for(int j = 0;j<m;j++){
            int nj = (j+1) % m;
            ans.push_back(make_pair(use[i][j],use[i][nj]));
        }
    }

    int mm = use.size();
    atcoder::dsu uf(mm);
    for(int i = 0;i<m;i++) uf.merge(cnt[u[i]],cnt[v[i]]);
    for(auto&now:uf.groups()){
        sort(now.begin(),now.end());
        for(int i = 0;i+1<now.size();i++) ans.push_back(make_pair(use[now[i]][0],use[now[i+1]][0]));
    }
    //for(int i = 0;i+1<use.size();i++) ans.push_back(make_pair(use[i][0],use[i+1][0]));
    cout<<ans.size()<<endl;
    for(int i = 0;i<ans.size();i++) cout<<ans[i].first+1<<" "<<ans[i].second+1<<endl;
}

0