結果

問題 No.1 道のショートカット
ユーザー 沙耶花沙耶花
提出日時 2021-10-20 20:23:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 29 ms / 5,000 ms
コード長 692 bytes
コンパイル時間 4,940 ms
コンパイル使用メモリ 277,736 KB
実行使用メモリ 25,792 KB
最終ジャッジ日時 2024-09-20 06:41:38
合計ジャッジ時間 6,222 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 21 ms
20,448 KB
testcase_09 AC 13 ms
11,740 KB
testcase_10 AC 9 ms
7,904 KB
testcase_11 AC 13 ms
12,008 KB
testcase_12 AC 28 ms
25,792 KB
testcase_13 AC 29 ms
25,192 KB
testcase_14 AC 4 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 6 ms
6,548 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 5 ms
5,776 KB
testcase_20 AC 6 ms
6,424 KB
testcase_21 AC 8 ms
7,568 KB
testcase_22 AC 5 ms
5,392 KB
testcase_23 AC 23 ms
21,476 KB
testcase_24 AC 28 ms
25,248 KB
testcase_25 AC 13 ms
10,196 KB
testcase_26 AC 8 ms
7,892 KB
testcase_27 AC 22 ms
19,164 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 6 ms
6,944 KB
testcase_30 AC 3 ms
6,940 KB
testcase_31 AC 5 ms
6,940 KB
testcase_32 AC 16 ms
15,160 KB
testcase_33 AC 13 ms
11,096 KB
testcase_34 AC 20 ms
17,512 KB
testcase_35 AC 3 ms
5,376 KB
testcase_36 AC 5 ms
5,660 KB
testcase_37 AC 3 ms
5,376 KB
testcase_38 AC 2 ms
5,376 KB
testcase_39 AC 6 ms
5,776 KB
testcase_40 AC 3 ms
5,376 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000001

int main(){
	
	int N,C,V;
	cin>>N>>C>>V;
	
	vector<int> S(V),T(V),Y(V),M(V);
	rep(i,V)cin>>S[i];
	rep(i,V)cin>>T[i];
	rep(i,V)cin>>Y[i];
	rep(i,V)cin>>M[i];
	
	mcf_graph<int,int> G(N*(C+1));
	
	rep(i,V){
		rep(j,C+1){
			if(j + Y[i] <= C)G.add_edge((S[i]-1)*(C+1) + j, (T[i]-1)*(C+1) + j + Y[i], 1, M[i]);
		}
	}
	rep(j,C){
		G.add_edge(j,j+1,1,0);
	}
	
	auto ret = G.flow(0,(N-1)*(C+1)+C, 1);
	int ans = ret.second;
	if(ret.first==0)ans = -1;
	
	cout<<ans<<endl;
	
	return 0;
}
0