結果

問題 No.2464 To DAG
ユーザー hirayuu_ychirayuu_yc
提出日時 2023-08-26 07:29:42
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 804 bytes
コンパイル時間 5,685 ms
コンパイル使用メモリ 318,932 KB
実行使用メモリ 97,532 KB
最終ジャッジ日時 2024-06-09 14:36:54
合計ジャッジ時間 35,159 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 444 ms
90,904 KB
testcase_03 TLE -
testcase_04 AC 1,329 ms
94,192 KB
testcase_05 AC 993 ms
91,632 KB
testcase_06 AC 840 ms
92,280 KB
testcase_07 WA -
testcase_08 AC 945 ms
50,552 KB
testcase_09 AC 678 ms
47,008 KB
testcase_10 AC 592 ms
44,644 KB
testcase_11 AC 440 ms
41,032 KB
testcase_12 AC 348 ms
27,920 KB
testcase_13 AC 360 ms
36,708 KB
testcase_14 AC 650 ms
72,612 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 208 ms
35,552 KB
testcase_23 AC 224 ms
35,068 KB
testcase_24 AC 202 ms
39,392 KB
testcase_25 AC 203 ms
41,432 KB
testcase_26 AC 176 ms
23,324 KB
testcase_27 AC 1,154 ms
95,796 KB
testcase_28 AC 1,174 ms
97,532 KB
testcase_29 AC 1,143 ms
95,268 KB
testcase_30 AC 900 ms
48,868 KB
testcase_31 AC 910 ms
42,868 KB
testcase_32 AC 982 ms
42,624 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 219 ms
34,716 KB
testcase_36 AC 195 ms
35,044 KB
testcase_37 AC 138 ms
35,808 KB
testcase_38 AC 133 ms
34,028 KB
testcase_39 AC 84 ms
74,716 KB
testcase_40 AC 87 ms
74,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;

int main() {
    int N,M;
    cin>>N>>M;
    vector<int> d(N);
    mf_graph<long long> gr(N+2);
    for(int i=0; i<M; i++){
        int U,V;
        cin>>U>>V;
        d[U-1]+=1;
        d[V-1]-=1;
        gr.add_edge(U-1,V-1,1);
    }
    for(int i=0; i<N; i++){
        gr.add_edge(N,i,300000);
        gr.add_edge(i,N+1,300000-d[i]);
    }
    vector<pair<int,int>> ans(0);
    cerr<<gr.flow(N,N+1);
    for(mf_graph<long long>::edge i:gr.edges()){
        if(i.flow==0 or i.from==N or i.to==N+1){
            continue;
        }
        ans.push_back(make_pair(i.from+1,i.to+1));
    }
    cout<<N<<" "<<ans.size()<<endl;
    for(pair<int,int> i: ans){
        cout<<i.first<<" "<<i.second<<endl;
    }
}
0