結果

問題 No.1782 ManyCoins
ユーザー 👑 ygussanyygussany
提出日時 2021-12-11 23:08:36
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 1,104 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 30,976 KB
実行使用メモリ 25,344 KB
最終ジャッジ日時 2024-07-20 06:27:35
合計ジャッジ時間 3,147 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 30 ms
13,568 KB
testcase_14 AC 112 ms
23,680 KB
testcase_15 AC 61 ms
17,280 KB
testcase_16 AC 76 ms
21,376 KB
testcase_17 AC 115 ms
22,656 KB
testcase_18 AC 86 ms
22,016 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 95 ms
19,584 KB
testcase_21 AC 112 ms
23,680 KB
testcase_22 AC 147 ms
21,888 KB
testcase_23 AC 130 ms
21,504 KB
testcase_24 AC 6 ms
9,728 KB
testcase_25 AC 126 ms
22,272 KB
testcase_26 AC 59 ms
16,128 KB
testcase_27 AC 134 ms
23,424 KB
testcase_28 AC 5 ms
9,728 KB
testcase_29 AC 34 ms
24,064 KB
testcase_30 AC 6 ms
10,240 KB
testcase_31 AC 24 ms
18,304 KB
testcase_32 AC 30 ms
20,480 KB
testcase_33 AC 53 ms
25,344 KB
testcase_34 AC 8 ms
10,752 KB
testcase_35 AC 8 ms
10,240 KB
testcase_36 AC 14 ms
10,240 KB
testcase_37 AC 6 ms
9,344 KB
testcase_38 AC 5 ms
9,728 KB
testcase_39 AC 2 ms
5,376 KB
testcase_40 AC 5 ms
9,344 KB
testcase_41 AC 4 ms
7,680 KB
testcase_42 AC 5 ms
8,960 KB
testcase_43 AC 3 ms
7,680 KB
testcase_44 AC 5 ms
9,472 KB
testcase_45 AC 4 ms
8,576 KB
testcase_46 AC 2 ms
5,376 KB
testcase_47 AC 1 ms
5,376 KB
testcase_48 AC 1 ms
5,376 KB
testcase_49 AC 1 ms
5,376 KB
testcase_50 AC 5 ms
9,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int main()
{
	int i, N, W[21], max = 0;
	long long L;
	scanf("%d %lld", &N, &L);
	for (i = 1; i <= N; i++) {
		scanf("%d", &(W[i]));
		if (max < W[i]) max = W[i];
	}
	
	const long long sup = 1LL << 40;
	int j, k, head, tail;
	long long ans = -1, dist[1000001], q[2000001][2], tmp;
	for (i = 1, dist[0] = 0, q[max][0] = 0, q[max][1] = 0; i < max; i++) dist[i] = sup;
	for (head = max, tail = max + 1; head < tail; head++) {
		i = q[head][0];
		if (q[head][1] != dist[i]) continue;
		if (L % max >= i) tmp = L / max * max + i;
		else tmp = (L / max - 1) * max + i;
		if (tmp < dist[i] * max + i) continue;
		ans += (tmp - (dist[i] * max + i)) / max + 1;
		
		for (j = 1; j <= N; j++) {
			if (W[j] == max) continue;
			if (i + W[j] < max) {
				k = i + W[j];
				if (dist[k] > dist[i]) {
					dist[k] = dist[i];
					q[head][0] = k;
					q[head--][1] = dist[k];
				}
			} else {
				k = i + W[j] - max;
				if (dist[k] > dist[i] + 1) {
					dist[k] = dist[i] + 1;
					q[tail][0] = k;
					q[tail++][1] = dist[k];
				}
			}
		}
	}
	printf("%lld\n", ans);
	fflush(stdout);
	return 0;
}
0