結果

問題 No.2464 To DAG
ユーザー hirayuu_ychirayuu_yc
提出日時 2023-08-26 07:33:46
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 809 bytes
コンパイル時間 5,632 ms
コンパイル使用メモリ 319,452 KB
実行使用メモリ 95,664 KB
最終ジャッジ日時 2024-06-09 14:36:11
合計ジャッジ時間 36,421 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 535 ms
93,764 KB
testcase_03 TLE -
testcase_04 AC 1,318 ms
92,560 KB
testcase_05 AC 1,018 ms
93,096 KB
testcase_06 AC 837 ms
91,036 KB
testcase_07 WA -
testcase_08 AC 939 ms
51,988 KB
testcase_09 AC 626 ms
47,252 KB
testcase_10 AC 533 ms
44,512 KB
testcase_11 AC 395 ms
39,060 KB
testcase_12 AC 318 ms
27,664 KB
testcase_13 AC 328 ms
37,212 KB
testcase_14 AC 516 ms
71,228 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 211 ms
37,224 KB
testcase_23 AC 209 ms
34,428 KB
testcase_24 AC 204 ms
39,656 KB
testcase_25 AC 210 ms
39,984 KB
testcase_26 AC 118 ms
22,600 KB
testcase_27 AC 1,005 ms
94,496 KB
testcase_28 AC 993 ms
95,664 KB
testcase_29 AC 854 ms
94,388 KB
testcase_30 AC 613 ms
50,632 KB
testcase_31 AC 644 ms
43,680 KB
testcase_32 AC 708 ms
40,824 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 177 ms
34,560 KB
testcase_36 AC 157 ms
35,524 KB
testcase_37 AC 145 ms
35,704 KB
testcase_38 AC 143 ms
36,092 KB
testcase_39 AC 94 ms
72,940 KB
testcase_40 AC 95 ms
73,848 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));
    }
    printf("%d %d\n",N,(int)ans.size());
    for(pair<int,int> i: ans){
        printf("%d %d\n",i.first,i.second);
    }
}
0