結果

問題 No.1465 Archaea
ユーザー Manuel1024Manuel1024
提出日時 2021-04-04 19:51:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 600 bytes
コンパイル時間 736 ms
コンパイル使用メモリ 68,480 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-06-08 16:53:16
合計ジャッジ時間 4,343 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,624 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 10 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 TLE -
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 <iostream>
#include <vector>
using namespace std;
constexpr int INF = 1001001001;
void chmin(int &a, int x){
    if(a > x) a = x;
}

int f(vector<int> &memo, int n){
    if(n < 1) return INF;
    if(memo[n] == INF){
        if(n > 1 && n % 2 == 0) chmin(memo[n], f(memo, n/2)+1);
        if(memo[n] == INF) chmin(memo[n], f(memo, n-3)+1);
    }
    return memo[n];
}

int main(){
    int n, k;
    cin >> n >> k;

    vector<int> memo(n+10, INF);
    memo[1] = 0;
    memo[2] = 1;
    memo[4] = 1;
    if(f(memo, n) <= k) cout << "YES" << endl;
    else cout << "NO" << endl;
    return 0;
}
0