結果
問題 | No.2464 To DAG |
ユーザー | hirayuu_yc |
提出日時 | 2023-08-26 07:00:23 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 786 bytes |
コンパイル時間 | 4,969 ms |
コンパイル使用メモリ | 320,440 KB |
実行使用メモリ | 81,684 KB |
最終ジャッジ日時 | 2024-06-09 14:35:33 |
合計ジャッジ時間 | 19,456 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 408 ms
77,064 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
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 | AC | 2 ms
6,944 KB |
testcase_20 | AC | 2 ms
6,944 KB |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | AC | 211 ms
27,848 KB |
testcase_23 | AC | 216 ms
26,836 KB |
testcase_24 | AC | 193 ms
28,080 KB |
testcase_25 | AC | 193 ms
28,592 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | AC | 200 ms
27,924 KB |
testcase_36 | AC | 193 ms
29,584 KB |
testcase_37 | AC | 132 ms
28,372 KB |
testcase_38 | AC | 130 ms
28,784 KB |
testcase_39 | AC | 68 ms
60,280 KB |
testcase_40 | WA | - |
ソースコード
#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<int> 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); gr.flow(N,N+1); for(mf_graph<int>::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; } }