結果

問題 No.472 平均順位
ユーザー megasharesmegashares
提出日時 2018-09-12 22:23:36
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 878 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 24,704 KB
実行使用メモリ 314,240 KB
最終ジャッジ日時 2024-06-27 23:37:30
合計ジャッジ時間 3,717 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 0 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 23 ms
16,000 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 MLE -
testcase_15 AC 229 ms
138,792 KB
testcase_16 MLE -
testcase_17 MLE -
testcase_18 WA -
testcase_19 AC 119 ms
78,720 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:17:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   17 |         scanf("%d%d", &n, &p);
      |         ~~~~~^~~~~~~~~~~~~~~~
main.cpp:20:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   20 |                 scanf("%d%d%d", &arr[i].a, &arr[i].b, &arr[i].c);
      |                 ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

double f[5010][15010] = {};

double min(double a, double i, double b, double j) {
	return a / i < b / j ? a : b;
}

int main() {
	int n, p;
	int i, j;

	struct {
		int a, b, c;
	} arr[5010];

	scanf("%d%d", &n, &p);

	for (i = 1; i <= n; i++) {
		scanf("%d%d%d", &arr[i].a, &arr[i].b, &arr[i].c);
	}

	f[1][0] = arr[1].a;
	f[1][1] = arr[1].b;
	f[1][2] = arr[1].c;
	f[1][3] = 1.0;

	for (i = 2; i <= n; i++) {
		for (j = 0; j <= p; j++) {
			if (j > 3 * i) continue;

			if (j <= (i - 1) * 3) {
				f[i][j] = (f[i - 1][j] + arr[i].a);

				if (j - 1 >= 0) f[i][j] = min(f[i][j], i, (f[i - 1][j - 1] + arr[i].b), i);
				if (j - 2 >= 0) f[i][j] = min(f[i][j], i, (f[i - 1][j - 2] + arr[i].c), i);
				if (j - 3 >= 0) f[i][j] = min(f[i][j], i, (f[i - 1][j - 3] + 1.0), i);
			}
		}
	}

	printf("%.1lf", f[n][p] / (double)n);

	getchar(); getchar();
	return 0;
}
0