結果
問題 | No.2464 To DAG |
ユーザー | hirayuu_yc |
提出日時 | 2023-08-26 07:28:00 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 792 bytes |
コンパイル時間 | 4,701 ms |
コンパイル使用メモリ | 320,036 KB |
実行使用メモリ | 82,560 KB |
最終ジャッジ日時 | 2024-06-09 14:35:12 |
合計ジャッジ時間 | 17,908 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 449 ms
74,584 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 | 197 ms
24,948 KB |
testcase_23 | AC | 201 ms
26,752 KB |
testcase_24 | AC | 192 ms
28,572 KB |
testcase_25 | AC | 194 ms
30,108 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 | 195 ms
29,536 KB |
testcase_36 | AC | 185 ms
29,184 KB |
testcase_37 | AC | 134 ms
28,028 KB |
testcase_38 | AC | 127 ms
29,524 KB |
testcase_39 | AC | 68 ms
61,256 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); cerr<<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; } }