結果

問題 No.1465 Archaea
ユーザー MZKiMZKi
提出日時 2021-04-02 22:18:21
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 915 bytes
コンパイル時間 1,241 ms
コンパイル使用メモリ 160,324 KB
実行使用メモリ 13,888 KB
最終ジャッジ日時 2024-06-06 07:06:34
合計ジャッジ時間 4,723 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,888 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 8 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 TLE -
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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
template<class T> inline bool chmin(T&a, T b){if(a > b){a = b; return true;}else{return false;}}
template<class T> inline bool chmax(T&a, T b){if(a < b){a = b; return true;}else{return false;}}
#define ll long long
#define double long double
#define rep(i,n) for(int i=0;i<(n);i++)
#define REP(i,n) for(int i=1;i<=(n);i++)
#define mod (ll)(1e9+7)
#define inf (ll)(3e18+7)
#define eps (double)(1e-9)
#define pi (double) acos(-1)
#define P pair<int,int>
#define PiP pair<int,pair<int,int>>
#define all(x) x.begin(),x.end()
#define rall(x) x.rbegin(),x.rend()
using namespace std;

vector<int> dp(200010, -1);

int solve(int n){
    if(dp[n] != -1)return dp[n];
    int ans = mod;
    if(n % 2 == 0)chmin(ans, solve(n/2));
    if(n >= 4)chmin(ans, solve(n-3));
    return ans;
}
int main() {
    int n, k;
    cin >> n >> k;
    dp[1] = 0;
    cout << (solve(n) <= k ? "YES" : "NO") << endl;
}
0