結果

問題 No.1208 anti primenumber game
ユーザー jupirojupiro
提出日時 2020-10-20 10:50:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 303 ms / 2,000 ms
コード長 2,573 bytes
コンパイル時間 1,755 ms
コンパイル使用メモリ 146,336 KB
実行使用メモリ 170,496 KB
最終ジャッジ日時 2024-07-21 08:18:34
合計ジャッジ時間 11,765 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 224 ms
145,408 KB
testcase_16 AC 223 ms
145,280 KB
testcase_17 AC 224 ms
145,408 KB
testcase_18 AC 225 ms
145,360 KB
testcase_19 AC 226 ms
145,408 KB
testcase_20 AC 227 ms
145,368 KB
testcase_21 AC 268 ms
167,856 KB
testcase_22 AC 264 ms
167,936 KB
testcase_23 AC 245 ms
157,872 KB
testcase_24 AC 291 ms
170,496 KB
testcase_25 AC 288 ms
170,368 KB
testcase_26 AC 288 ms
170,368 KB
testcase_27 AC 290 ms
170,360 KB
testcase_28 AC 291 ms
170,368 KB
testcase_29 AC 292 ms
170,368 KB
testcase_30 AC 245 ms
145,396 KB
testcase_31 AC 250 ms
145,280 KB
testcase_32 AC 235 ms
146,176 KB
testcase_33 AC 249 ms
162,816 KB
testcase_34 AC 257 ms
170,368 KB
testcase_35 AC 258 ms
170,368 KB
testcase_36 AC 205 ms
134,016 KB
testcase_37 AC 258 ms
170,416 KB
testcase_38 AC 278 ms
162,688 KB
testcase_39 AC 277 ms
162,688 KB
testcase_40 AC 303 ms
169,632 KB
testcase_41 AC 240 ms
147,444 KB
testcase_42 AC 258 ms
165,840 KB
testcase_43 AC 258 ms
165,868 KB
testcase_44 AC 249 ms
158,976 KB
testcase_45 AC 254 ms
158,976 KB
testcase_46 AC 222 ms
141,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <sstream>
#include <stack>
#include <algorithm>
#include <cmath>
#include <queue>
#include <bitset>
#include <iomanip>
#include <limits>
#include <chrono>
#include <random>
#include <array>
#include <unordered_map>
#include <functional>
#include <complex>
#include <numeric>
#include <cctype>
#include <map>
#include <set>
#include <cstdlib>
#include <bitset>
#include <tuple>
#include <assert.h>
#include <deque>
#include <utility>
#include <fstream>

using namespace std;
typedef long long ll;
using ull = unsigned long long;

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
template<typename T> T gcd(T a, T b) { a = abs(a), b = abs(b); while (b > 0) { tie(a, b) = make_pair(b, a % b); } return a; }
//mt19937 rnd(chrono::steady_clock::now().time_since_epoch().count());

constexpr long long INF = 1LL << 60;
constexpr int inf = 1000000007;
constexpr long long mod = 1000000007LL;
//constexpr long long mod = 998244353;
constexpr int MAX = 1100000;

int main()
{

	cin.tie(nullptr);
	ios::sync_with_stdio(false);

	vector<ll> en = { 1, 4, 6 };
	ll n, m; cin >> n >> m;
	vector<ll> a(n); for (int i = 0; i < n; i++) cin >> a[i];
	vector dp(n + 1, vector(4, vector<ll>(2)));
	vector done(n + 1, vector(4, vector<bool>(2)));
	auto solve = [&](auto&& f, int cur, int b, int t)->ll {
		if (cur == n) return 0;
		if (done[cur][b][t]) return dp[cur][b][t];
		if (t == 0) {
			ll res = -INF;
			if (b == 3) {
				for (int i = 0; i < b; i++) {
					if (a[cur] <= en[i]) continue;
					chmax(res, a[cur] - en[i] + f(f, cur, i, 1));
				}
				chmax(res, a[cur] + f(f, cur + 1, 3, 1) - m);
			}
			else {
				for (int i = 0; i < b; i++) {
					chmax(res, en[b] - en[i] + f(f, cur, i, 1));
				}
				chmax(res, en[b] + f(f, cur + 1, 3, 1) - m);
			}
			done[cur][b][t] = true;
			return dp[cur][b][t] = res;
		}
		else {
			ll res = INF;
			if (b == 3) {
				for (int i = 0; i < b; i++) {
					if (a[cur] <= en[i]) continue;
					chmin(res, -(a[cur] - en[i]) + f(f, cur, i, 0));
				}
				chmin(res, -a[cur] + f(f, cur + 1, 3, 0) + m);
			}
			else {
				for (int i = 0; i < b; i++) {
					chmin(res, -(en[b] - en[i]) + f(f, cur, i, 0));
				}
				chmin(res, -en[b] + f(f, cur + 1, 3, 0) + m);
			}
			done[cur][b][t] = true;
			return dp[cur][b][t] = res;
		}
	};
	//cout << solve(solve, 0, 3, 0) << endl;
	if (solve(solve, 0, 3, 0) > 0) cout << "First" << endl;
	else cout << "Second" << endl;
}
0