結果

問題 No.1208 anti primenumber game
ユーザー yuma220284yuma220284
提出日時 2020-08-30 13:57:18
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 913 bytes
コンパイル時間 3,453 ms
コンパイル使用メモリ 165,544 KB
実行使用メモリ 34,488 KB
最終ジャッジ日時 2024-11-15 07:08:56
合計ジャッジ時間 6,909 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 1 ms
6,820 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 1 ms
6,820 KB
testcase_15 AC 58 ms
24,952 KB
testcase_16 AC 58 ms
25,028 KB
testcase_17 AC 58 ms
25,036 KB
testcase_18 AC 58 ms
24,924 KB
testcase_19 AC 57 ms
25,036 KB
testcase_20 AC 59 ms
25,036 KB
testcase_21 AC 68 ms
33,392 KB
testcase_22 AC 67 ms
33,480 KB
testcase_23 AC 65 ms
29,800 KB
testcase_24 AC 144 ms
34,292 KB
testcase_25 AC 143 ms
34,428 KB
testcase_26 AC 137 ms
34,292 KB
testcase_27 AC 136 ms
34,488 KB
testcase_28 AC 137 ms
34,444 KB
testcase_29 AC 138 ms
34,444 KB
testcase_30 AC 58 ms
25,048 KB
testcase_31 AC 59 ms
25,108 KB
testcase_32 AC 59 ms
25,244 KB
testcase_33 AC 66 ms
31,432 KB
testcase_34 AC 67 ms
34,412 KB
testcase_35 AC 69 ms
34,312 KB
testcase_36 AC 54 ms
27,540 KB
testcase_37 AC 69 ms
34,392 KB
testcase_38 AC 115 ms
31,568 KB
testcase_39 AC 115 ms
31,616 KB
testcase_40 AC 134 ms
34,084 KB
testcase_41 AC 66 ms
25,736 KB
testcase_42 AC 73 ms
32,628 KB
testcase_43 AC 74 ms
32,752 KB
testcase_44 AC 71 ms
30,204 KB
testcase_45 AC 71 ms
30,024 KB
testcase_46 AC 60 ms
26,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

long long INF = 1000000000000000000;

long long N, M;
vector<long long> A;
vector<vector<long long> > DP;

long long DFS(long long X, int Y) {
	if (X == N) return 0;
	if (DP[X][Y] != -INF) return DP[X][Y];
	if (Y == 0) {
		if (A[X + 1] == 1) return DP[X][Y] = -DFS(X + 1, 0) + 1 - M;
		else return DP[X][Y] = -DFS(X + 1, 1) + 1 - M;
	}
	else {
		DP[X][Y] = max(DP[X][Y], -DFS(X, 0) + A[X] - 1);
		if (A[X + 1] == 1) DP[X][Y] = max(DP[X][Y], -DFS(X + 1, 0) + A[X] - M);
		else DP[X][Y] = max(DP[X][Y], -DFS(X + 1, 1) + A[X] - M);
		return DP[X][Y];
	}
}

int main() {
	cin >> N >> M;
	A.resize(N + 1);
	for (int i = 0; i < N; i++) cin >> A[i];
	A[N] = 1;
	DP.assign(N, vector<long long>(2, -INF));
	if (A[0] == 1) {
		DFS(0, 0);
		cout << (DP[0][0] > 0 ? "First" : "Second") << endl;
	}
	else {
		DFS(0, 1);
		cout << (DP[0][1] > 0 ? "First" : "Second") << endl;
	}
}
0