結果

問題 No.949 飲酒プログラミングコンテスト
ユーザー ianCKianCK
提出日時 2019-12-12 02:57:52
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 65 ms / 2,500 ms
コード長 1,441 bytes
コンパイル時間 386 ms
コンパイル使用メモリ 39,372 KB
実行使用メモリ 72,212 KB
最終ジャッジ日時 2024-06-24 08:16:15
合計ジャッジ時間 2,411 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 0 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 3 ms
7,800 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 45 ms
62,544 KB
testcase_12 AC 40 ms
61,652 KB
testcase_13 AC 41 ms
58,092 KB
testcase_14 AC 9 ms
22,788 KB
testcase_15 AC 33 ms
51,844 KB
testcase_16 AC 53 ms
70,132 KB
testcase_17 AC 10 ms
24,968 KB
testcase_18 AC 49 ms
70,556 KB
testcase_19 AC 49 ms
62,000 KB
testcase_20 AC 14 ms
28,492 KB
testcase_21 AC 8 ms
18,392 KB
testcase_22 AC 11 ms
26,832 KB
testcase_23 AC 4 ms
9,940 KB
testcase_24 AC 31 ms
52,976 KB
testcase_25 AC 57 ms
72,156 KB
testcase_26 AC 53 ms
72,120 KB
testcase_27 AC 59 ms
72,212 KB
testcase_28 AC 51 ms
72,148 KB
testcase_29 AC 65 ms
72,168 KB
testcase_30 AC 53 ms
72,160 KB
testcase_31 AC 44 ms
72,132 KB
testcase_32 AC 62 ms
72,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:12:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   12 |         scanf("%d", &n);
      |         ~~~~~^~~~~~~~~~
main.cpp:13:43: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   13 |         for (int i = 0; i <= n; i++) scanf("%d", &a[i]);
      |                                      ~~~~~^~~~~~~~~~~~~
main.cpp:14:43: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   14 |         for (int i = 0; i <= n; i++) scanf("%d", &b[i]);
      |                                      ~~~~~^~~~~~~~~~~~~
main.cpp:15:43: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   15 |         for (int i = 1; i <= n; i++) scanf("%d", &d[i]);
      |                                      ~~~~~^~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
#include <algorithm>
#include <utility>
using namespace std;
#define F first
#define S second
constexpr int kN = int(3E3 + 10);
pair<int, int> dp[kN][kN];
int a[kN], b[kN], d[kN];
int main() {
	int n;
	scanf("%d", &n);
	for (int i = 0; i <= n; i++) scanf("%d", &a[i]);
	for (int i = 0; i <= n; i++) scanf("%d", &b[i]);
	for (int i = 1; i <= n; i++) scanf("%d", &d[i]);
	sort(d + 1, d + n + 1);
	reverse(d + 1, d + n + 1);
	dp[0][0] = {0, 1};
	for (int i = 1; i <= n; i++) {
		dp[0][i] = dp[0][i - 1];
		while (dp[0][i].S <= n && a[0] + b[i] < d[dp[0][i].S]) dp[0][i].S++;
		if (dp[0][i].S <= n && a[0] + b[i] >= d[dp[0][i].S]) {
			dp[0][i].F++;
			dp[0][i].S++;
		}
	}
	for (int i = 1; i <= n; i++) {
		dp[i][0] = dp[i - 1][0];
		while (dp[i][0].S <= n && a[i] + b[0] < d[dp[i][0].S]) dp[i][0].S++;
		if (dp[i][0].S <= n && a[i] + b[0] >= d[dp[i][0].S]) {
			dp[i][0].F++;
			dp[i][0].S++;
		}
		for (int j = 1; j <= n; j++) {
			if (dp[i - 1][j].F > dp[i][j - 1].F) dp[i][j] = dp[i - 1][j];
			else if (dp[i - 1][j].F < dp[i][j - 1].F) dp[i][j] = dp[i][j - 1];
			else if (dp[i - 1][j].S < dp[i][j - 1].S) dp[i][j] = dp[i - 1][j];
			else dp[i][j] = dp[i][j - 1];
			while (dp[i][j].S <= n && a[i] + b[j] < d[dp[i][j].S]) dp[i][j].S++;
			if (dp[i][j].S <= n && a[i] + b[j] >= d[dp[i][j].S]) {
				dp[i][j].F++;
				dp[i][j].S++;
			}
		}
	}
	printf("%d\n", dp[n][n].F);
}
0