結果
問題 | No.2464 To DAG |
ユーザー | hirayuu_yc |
提出日時 | 2023-08-26 07:42:07 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 831 bytes |
コンパイル時間 | 5,366 ms |
コンパイル使用メモリ | 330,968 KB |
実行使用メモリ | 143,436 KB |
最終ジャッジ日時 | 2024-06-09 14:37:05 |
合計ジャッジ時間 | 10,362 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,884 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
ソースコード
#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); mcf_graph<int,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,1); } for(int i=0; i<N; i++){ gr.add_edge(N,i,300000,0); gr.add_edge(i,N+1,300000-d[i],0); } vector<pair<int,int>> ans(0); cerr<<gr.flow(N,N+1).first; for(mcf_graph<int,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); } }