結果

問題 No.2916 累進コスト最小化
ユーザー kmjpkmjp
提出日時 2024-10-05 01:59:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 160 ms / 3,500 ms
コード長 1,231 bytes
コンパイル時間 2,373 ms
コンパイル使用メモリ 206,944 KB
実行使用メモリ 11,376 KB
最終ジャッジ日時 2024-10-05 01:59:47
合計ジャッジ時間 5,275 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
11,248 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 1 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 3 ms
6,820 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 1 ms
6,816 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 3 ms
9,584 KB
testcase_15 AC 2 ms
9,712 KB
testcase_16 AC 3 ms
9,712 KB
testcase_17 AC 2 ms
9,456 KB
testcase_18 AC 2 ms
9,584 KB
testcase_19 AC 2 ms
7,792 KB
testcase_20 AC 3 ms
9,576 KB
testcase_21 AC 2 ms
9,580 KB
testcase_22 AC 3 ms
7,536 KB
testcase_23 AC 3 ms
7,536 KB
testcase_24 AC 132 ms
11,248 KB
testcase_25 AC 135 ms
11,248 KB
testcase_26 AC 147 ms
11,240 KB
testcase_27 AC 160 ms
11,376 KB
testcase_28 AC 143 ms
11,120 KB
testcase_29 AC 152 ms
11,248 KB
testcase_30 AC 139 ms
11,244 KB
testcase_31 AC 138 ms
11,248 KB
testcase_32 AC 150 ms
11,248 KB
testcase_33 AC 149 ms
11,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define FORR2(x,y,arr) for(auto& [x,y]:arr)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;}
template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;}
//-------------------------------------------------------

int N,M,C;
ll dp[10][101010];
vector<vector<int>> E[10];

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N>>M>>C;
	FOR(i,M) {
		cin>>x>>y>>k>>r;
		E[x-1].push_back({y-1,k,r});
		E[y-1].push_back({x-1,k,r});
	}
	FOR(i,C+1) {
		FOR(j,N) dp[j][i]=-1;
		dp[N-1][i]=i;
		
		FOR(j,N) FORR(e,E[j]) {
			int c=i/e[1]+e[2];
			if(c<=i) dp[j][i]=max(dp[j][i],dp[e[0]][i-c]);
		}
		
	}
	
	for(i=1;i<=C;i++) cout<<dp[0][i]<<endl;
	
	
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0