結果
問題 | No.669 対決!!! 飲み比べ |
ユーザー | SugarDragon5 |
提出日時 | 2018-03-23 22:45:30 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,076 bytes |
コンパイル時間 | 1,813 ms |
コンパイル使用メモリ | 174,984 KB |
実行使用メモリ | 27,900 KB |
最終ジャッジ日時 | 2024-06-24 21:59:29 |
合計ジャッジ時間 | 5,317 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
12,800 KB |
testcase_01 | AC | 6 ms
8,744 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
ソースコード
#include<bits/stdc++.h> using namespace std; #define vi vector<int> #define vvi vector<vi> #define vs vector<string> #define pb push_back #define P pair<int,int> #define vp vector<P> #define PP pair<int,P> #define vpp vector<PP> #define fi first #define se second #define INF 1e9 #define MOD 1000000007 #define REP(i,n) for(int i=0;i<n;i++) #define REPR(i,n) for(int i=n;i>=0;i--) #define FOR(i,m,n) for(int i=m;i<n;i++) #define all(x) (x).begin(),(x).end() int k; int dp[1000001]; int grundy(int x){ if(dp[x]!=-1){ return dp[x]; } set<int> se; FOR(i,1,k+1){ if(x-i>=0){ se.insert(grundy(x-i)); } } int res=0; while(se.count(res)){ res++; } return dp[x]=res; } int main(){ int n; cin>>n>>k; vi vec(n); REP(i,n){ cin>>vec[i]; } REP(i,1000001){ dp[i]=-1; } grundy(*max_element(all(vec))); int ans=0; REP(i,n){ ans^=dp[vec[i]]; } if(ans!=0){ cout<<"YES"<<endl; }else{ cout<<"NO"<<endl; } return 0; }