結果

問題 No.1301 Strange Graph Shortest Path
ユーザー monnumonnu
提出日時 2021-04-19 23:08:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 245 ms / 3,000 ms
コード長 704 bytes
コンパイル時間 4,432 ms
コンパイル使用メモリ 247,376 KB
実行使用メモリ 62,712 KB
最終ジャッジ日時 2024-07-04 05:10:51
合計ジャッジ時間 12,911 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 212 ms
60,212 KB
testcase_03 AC 188 ms
53,540 KB
testcase_04 AC 245 ms
62,588 KB
testcase_05 AC 212 ms
60,600 KB
testcase_06 AC 225 ms
57,920 KB
testcase_07 AC 216 ms
58,600 KB
testcase_08 AC 193 ms
54,152 KB
testcase_09 AC 194 ms
55,112 KB
testcase_10 AC 189 ms
54,212 KB
testcase_11 AC 221 ms
59,528 KB
testcase_12 AC 220 ms
59,916 KB
testcase_13 AC 215 ms
60,744 KB
testcase_14 AC 211 ms
55,116 KB
testcase_15 AC 200 ms
55,932 KB
testcase_16 AC 241 ms
62,712 KB
testcase_17 AC 224 ms
62,184 KB
testcase_18 AC 212 ms
56,736 KB
testcase_19 AC 210 ms
58,316 KB
testcase_20 AC 220 ms
57,636 KB
testcase_21 AC 228 ms
60,784 KB
testcase_22 AC 231 ms
58,840 KB
testcase_23 AC 218 ms
61,196 KB
testcase_24 AC 220 ms
58,052 KB
testcase_25 AC 234 ms
62,584 KB
testcase_26 AC 221 ms
58,984 KB
testcase_27 AC 209 ms
59,524 KB
testcase_28 AC 200 ms
58,216 KB
testcase_29 AC 245 ms
62,436 KB
testcase_30 AC 223 ms
61,916 KB
testcase_31 AC 231 ms
61,776 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 182 ms
62,464 KB
testcase_34 AC 204 ms
62,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using ll=long long;
using Graph=vector<vector<pair<int,int>>>;
#define MAX 200003
#define MOD 1000000007
#define INF 1000000000000000000

int main(){
  int N,M;
  cin>>N>>M;
  vector<int> u(M),v(M);
  vector<ll> c(M),d(M);
  for(int i=0;i<M;i++){
    cin>>u[i]>>v[i]>>c[i]>>d[i];
    u[i]--;
    v[i]--;
  }

  mcf_graph<int,ll> G(N+2);
  for(int i=0;i<M;i++){
    G.add_edge(u[i],v[i],1,c[i]);
    G.add_edge(u[i],v[i],1,d[i]);
    G.add_edge(v[i],u[i],1,c[i]);
    G.add_edge(v[i],u[i],1,d[i]);
  }

  G.add_edge(N,0,2,0);
  G.add_edge(N-1,N+1,2,0);
  pair<int,ll> p=G.flow(N,N+1);
  cout<<p.second<<endl;
}
0