結果

問題 No.1782 ManyCoins
ユーザー HIR180HIR180
提出日時 2021-12-11 00:20:26
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 687 bytes
コンパイル時間 2,004 ms
コンパイル使用メモリ 211,928 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-07-18 20:52:50
合計ジャッジ時間 3,934 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 13 ms
6,656 KB
testcase_14 AC 10 ms
5,376 KB
testcase_15 AC 13 ms
5,376 KB
testcase_16 AC 33 ms
5,816 KB
testcase_17 AC 38 ms
6,732 KB
testcase_18 AC 38 ms
6,172 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 15 ms
5,376 KB
testcase_21 AC 8 ms
5,376 KB
testcase_22 AC 20 ms
5,376 KB
testcase_23 AC 50 ms
6,860 KB
testcase_24 AC 7 ms
11,008 KB
testcase_25 AC 3 ms
5,376 KB
testcase_26 AC 41 ms
6,108 KB
testcase_27 AC 3 ms
5,376 KB
testcase_28 AC 7 ms
11,008 KB
testcase_29 AC 28 ms
11,008 KB
testcase_30 AC 24 ms
11,008 KB
testcase_31 AC 33 ms
11,008 KB
testcase_32 AC 40 ms
11,008 KB
testcase_33 AC 66 ms
11,136 KB
testcase_34 AC 78 ms
11,008 KB
testcase_35 AC 100 ms
11,008 KB
testcase_36 AC 5 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 2 ms
5,376 KB
testcase_39 AC 2 ms
5,376 KB
testcase_40 AC 3 ms
5,376 KB
testcase_41 AC 4 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 7 ms
9,216 KB
testcase_44 AC 2 ms
5,376 KB
testcase_45 AC 3 ms
5,376 KB
testcase_46 AC 2 ms
5,376 KB
testcase_47 AC 1 ms
5,376 KB
testcase_48 AC 2 ms
5,376 KB
testcase_49 AC 1 ms
5,376 KB
testcase_50 AC 8 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main(){
	int n; long long L; cin >> n >> L;
	vector<int>w(n); 
	for(int i=0;i<n;i++) cin >> w[i];
	
	sort(w.begin(), w.end());
	vector<long long>dp(w[0], 1e18);
	dp[0] = 0;
	priority_queue<pair<long long, int>>que;
	que.emplace(0, 0);
	
	while(!que.empty()){
		auto q = que.top(); que.pop();
		long long zan = -q.first;
		int v = q.second;
		if(dp[v] != zan) continue;
		
		for(int i=1;i<n;i++){
			if(dp[(w[i]+v)%w[0]] > zan+w[i]){
				dp[(w[i]+v)%w[0]] = zan+w[i];
				que.emplace(-zan-w[i], (w[i]+v)%w[0]);
			}
		}
	}
	long long ans = 0;
	for(int i=0;i<w[0];i++) if(dp[i] <= L) ans += (L-dp[i]) / w[0] + 1;
	cout << --ans << '\n';
}
0