結果

問題 No.8 N言っちゃダメゲーム
ユーザー goodbatongoodbaton
提出日時 2015-07-15 23:53:03
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,114 bytes
コンパイル時間 638 ms
コンパイル使用メモリ 72,308 KB
実行使用メモリ 11,044 KB
最終ジャッジ日時 2024-07-08 08:06:33
合計ジャッジ時間 7,162 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 TLE -
testcase_04 AC 155 ms
5,376 KB
testcase_05 AC 22 ms
5,376 KB
testcase_06 AC 4,687 ms
5,376 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 -- -
testcase_10 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:31:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   31 |     scanf("%d",&p);
      |     ~~~~~^~~~~~~~~
main.cpp:35:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   35 |         scanf("%d%d",&n,&k);
      |         ~~~~~^~~~~~~~~~~~~~

ソースコード

diff #

#include <cstdio>
#include <cstdlib>
#include <iostream>
#include <string>
#include <cmath>
#include <algorithm>
#include <vector>
#include <queue>
#include <stack>
#include <map>
#include <set>
#include <cstring>

typedef long long ll;
using namespace std;

#define mod 1000000007
#define INF 1000000000
#define LLINF 2000000000000000000LL

#define SIZE 200000

int dp[120000];
int cc[120000],cc_min=0;


int main(){
    int p,n,k;
    
    
    scanf("%d",&p);
    
    for(int i=0;i<p;i++){
        
        scanf("%d%d",&n,&k);
        
        memset(dp, 0, sizeof(dp));
        memset(cc, 0, sizeof(cc));

        cc_min=0;
        
        for(int i=2;i<=n;i++){
            cc[dp[i-1]]++;
            
            while(cc[cc_min]>0)
                cc_min++;
            
            if(i-2>=k){
                cc[dp[i-k-1]]--;
                
                if(cc[dp[i-k-1]]==0)
                    cc_min=dp[i-k-1];
            }
            
            dp[i]=cc_min;
        }
        
        if(dp[n]==0)
            puts("Lose");
        else
            puts("Win");
    }
    
    return 0;
}
0