結果

問題 No.2739 Time is money
ユーザー t98slidert98slider
提出日時 2024-04-20 16:39:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 414 ms / 2,000 ms
コード長 417 bytes
コンパイル時間 4,928 ms
コンパイル使用メモリ 280,008 KB
実行使用メモリ 63,816 KB
最終ジャッジ日時 2024-10-12 12:28:31
合計ジャッジ時間 12,407 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 3 ms
6,816 KB
testcase_02 AC 181 ms
37,152 KB
testcase_03 AC 295 ms
54,136 KB
testcase_04 AC 172 ms
36,168 KB
testcase_05 AC 201 ms
40,540 KB
testcase_06 AC 294 ms
54,632 KB
testcase_07 AC 371 ms
62,812 KB
testcase_08 AC 326 ms
62,056 KB
testcase_09 AC 337 ms
63,816 KB
testcase_10 AC 312 ms
62,496 KB
testcase_11 AC 391 ms
62,112 KB
testcase_12 AC 403 ms
62,328 KB
testcase_13 AC 414 ms
63,312 KB
testcase_14 AC 378 ms
62,052 KB
testcase_15 AC 268 ms
61,084 KB
testcase_16 AC 242 ms
61,652 KB
testcase_17 AC 354 ms
62,188 KB
testcase_18 AC 377 ms
62,204 KB
testcase_19 AC 297 ms
62,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using ll = long long;

int main(){
    ll n, m, u, v, x, c, t;
    cin >> n >> m >> x;
    atcoder::mcf_graph<int, ll> g(n);
	while(m--){
        cin >> u >> v >> c >> t;
        g.add_edge(--u, --v, 1, c += t * x);
        g.add_edge(v, u, 1, c);
    }
    auto [fl, ans] = g.flow(0, n - 1, 1);
    cout << (fl ? (ans + x - 1) / x : -1) << '\n';
}
0