結果

問題 No.1208 anti primenumber game
ユーザー beetbeet
提出日時 2020-08-30 13:18:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 287 ms / 2,000 ms
コード長 1,315 bytes
コンパイル時間 2,369 ms
コンパイル使用メモリ 211,868 KB
実行使用メモリ 132,928 KB
最終ジャッジ日時 2024-11-15 06:36:04
合計ジャッジ時間 8,739 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 67 ms
57,892 KB
testcase_16 AC 67 ms
57,960 KB
testcase_17 AC 68 ms
57,724 KB
testcase_18 AC 68 ms
57,856 KB
testcase_19 AC 69 ms
57,856 KB
testcase_20 AC 67 ms
57,856 KB
testcase_21 AC 134 ms
85,248 KB
testcase_22 AC 135 ms
85,504 KB
testcase_23 AC 83 ms
64,000 KB
testcase_24 AC 285 ms
132,736 KB
testcase_25 AC 282 ms
132,928 KB
testcase_26 AC 285 ms
132,736 KB
testcase_27 AC 280 ms
132,736 KB
testcase_28 AC 284 ms
132,864 KB
testcase_29 AC 285 ms
132,740 KB
testcase_30 AC 69 ms
57,980 KB
testcase_31 AC 68 ms
57,900 KB
testcase_32 AC 69 ms
58,332 KB
testcase_33 AC 87 ms
66,560 KB
testcase_34 AC 93 ms
70,400 KB
testcase_35 AC 92 ms
70,364 KB
testcase_36 AC 73 ms
55,760 KB
testcase_37 AC 91 ms
70,272 KB
testcase_38 AC 221 ms
110,080 KB
testcase_39 AC 226 ms
109,952 KB
testcase_40 AC 287 ms
130,688 KB
testcase_41 AC 88 ms
64,256 KB
testcase_42 AC 112 ms
75,756 KB
testcase_43 AC 116 ms
75,744 KB
testcase_44 AC 106 ms
69,952 KB
testcase_45 AC 104 ms
69,888 KB
testcase_46 AC 84 ms
58,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using Int = long long;
const char newl = '\n';

template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}
template<typename T> void drop(const T &x){cout<<x<<endl;exit(0);}
template<typename T=Int>
vector<T> read(size_t n){
  vector<T> ts(n);
  for(size_t i=0;i<n;i++) cin>>ts[i];
  return ts;
}


template<typename F>
struct FixPoint : F{
  FixPoint(F&& f):F(forward<F>(f)){}
  template<typename... Args>
  decltype(auto) operator()(Args&&... args) const{
    return F::operator()(*this,forward<Args>(args)...);
  }
};
template<typename F>
inline decltype(auto) MFP(F&& f){
  return FixPoint<F>{forward<F>(f)};
}

//INSERT ABOVE HERE
signed main(){
  cin.tie(0);
  ios::sync_with_stdio(0);

  Int n,m;
  cin>>n>>m;
  auto as=read(n);

  const Int INF = 1e18;
  vector<map<Int, Int>> dp(n);
  MFP([&](auto dfs,Int x,Int v)->Int{
    if(x==n) return 0;
    if(dp[x].count(v)) return dp[x][v];
    Int &res=dp[x][v];
    res=-INF;

    // take all
    chmax(res,-dfs(x+1,as[x+1])+(v-m));

    // remain r
    for(Int r:{1,4,6,8,9,10})
      if(r<v) chmax(res,-dfs(x,r)+(v-r));

    return res;
  })(0,as[0]);
  cout<<(dp[0][as[0]]>0?"First":"Second")<<newl;
  return 0;
}
0