結果

問題 No.361 門松ゲーム2
ユーザー imulanimulan
提出日時 2016-12-11 16:05:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 900 bytes
コンパイル時間 1,584 ms
コンパイル使用メモリ 167,516 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 18:34:00
合計ジャッジ時間 2,760 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 ms
5,376 KB
testcase_06 WA -
testcase_07 AC 2 ms
5,376 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 2 ms
5,376 KB
testcase_13 WA -
testcase_14 AC 5 ms
5,376 KB
testcase_15 WA -
testcase_16 AC 3 ms
5,376 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 WA -
testcase_22 AC 13 ms
5,376 KB
testcase_23 WA -
testcase_24 AC 2 ms
5,376 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 3 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

typedef long long ll;
#define rep(i,n) for(int (i)=0;(i)<(int)(n);++(i))
#define each(itr,c) for(__typeof(c.begin()) itr=c.begin(); itr!=c.end(); ++itr)
#define all(x) (x).begin(),(x).end()
#define pb push_back
#define fi first
#define se second

int D;
int win[501];

int dfs(int x)
{
    if(win[x]>=0) return win[x];
    if(x<=5) return 0;

    int ret=0;
    for(int a=1; a<=x/2; ++a)
    {
        for(int b=a+1; a+b<=x; ++b)
        {
            int c=x-b-a;
            if(b>=c) break;

            if(a!=c && b!=c && max({a,b,c})-min({a,b,c})<=D)
            {
                if(!dfs(a) && !dfs(b) && !dfs(c)) ret=1;
            }
        }
    }

    return win[x]=ret;
}

int main()
{
    int L;
    cin >>L >>D;
    memset(win,-1,sizeof(win));

    string ans="matsu";
    if(dfs(L)==1) ans="kado";

    cout << ans << endl;
    return 0;
}
0