結果

問題 No.1301 Strange Graph Shortest Path
ユーザー pockynypockyny
提出日時 2021-12-18 00:33:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 581 ms / 3,000 ms
コード長 803 bytes
コンパイル時間 1,546 ms
コンパイル使用メモリ 103,232 KB
実行使用メモリ 157,004 KB
最終ジャッジ日時 2024-09-15 01:40:15
合計ジャッジ時間 20,853 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 485 ms
151,624 KB
testcase_03 AC 432 ms
134,348 KB
testcase_04 AC 556 ms
157,000 KB
testcase_05 AC 479 ms
152,272 KB
testcase_06 AC 511 ms
144,840 KB
testcase_07 AC 493 ms
147,016 KB
testcase_08 AC 448 ms
135,756 KB
testcase_09 AC 422 ms
137,292 KB
testcase_10 AC 420 ms
135,756 KB
testcase_11 AC 499 ms
149,196 KB
testcase_12 AC 490 ms
149,448 KB
testcase_13 AC 458 ms
152,776 KB
testcase_14 AC 519 ms
137,160 KB
testcase_15 AC 437 ms
139,592 KB
testcase_16 AC 543 ms
156,748 KB
testcase_17 AC 514 ms
155,848 KB
testcase_18 AC 491 ms
142,156 KB
testcase_19 AC 448 ms
145,868 KB
testcase_20 AC 498 ms
142,920 KB
testcase_21 AC 514 ms
152,264 KB
testcase_22 AC 525 ms
146,632 KB
testcase_23 AC 456 ms
153,932 KB
testcase_24 AC 526 ms
144,588 KB
testcase_25 AC 532 ms
156,488 KB
testcase_26 AC 499 ms
147,276 KB
testcase_27 AC 453 ms
148,944 KB
testcase_28 AC 429 ms
146,224 KB
testcase_29 AC 581 ms
155,600 KB
testcase_30 AC 477 ms
155,344 KB
testcase_31 AC 506 ms
154,316 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 387 ms
157,004 KB
testcase_34 AC 465 ms
156,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <atcoder/mincostflow>

using namespace std;
using namespace atcoder;
typedef long long ll;
int main(){
    int i,n,m; cin >> n >> m;
    mcf_graph<ll,ll> g(n + 4*m);
    int now = n;
    for(i=0;i<m;i++){
        int u,v,c,d; cin >> u >> v >> c >> d; u--; v--;
        g.add_edge(u,now,1,c); g.add_edge(now + 1,v,1,c);
        g.add_edge(v,now,1,c); g.add_edge(now + 1,u,1,c);
        g.add_edge(now,now + 1,1,0);
        g.add_edge(u,now + 2,1,d); g.add_edge(now + 3,v,1,d);
        g.add_edge(v,now + 2,1,d); g.add_edge(now + 3,u,1,d);
        g.add_edge(now + 2,now + 3,1,0);
        now += 4;
    }
    auto ret = g.flow(0,n - 1,2);
    cout << ret.second/2 << endl;
    //cout << ret.first << " " << ret.second << endl;
    //cout << g.flow(0,n - 1,2).second << endl;
}
0