結果

問題 No.1465 Archaea
ユーザー Manuel1024Manuel1024
提出日時 2021-04-04 19:51:51
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 600 bytes
コンパイル時間 805 ms
コンパイル使用メモリ 69,344 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-12-28 04:53:28
合計ジャッジ時間 13,979 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
10,496 KB
testcase_01 AC 2 ms
8,832 KB
testcase_02 AC 12 ms
10,276 KB
testcase_03 AC 1 ms
8,704 KB
testcase_04 AC 2 ms
10,144 KB
testcase_05 AC 1 ms
8,576 KB
testcase_06 AC 2 ms
10,496 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 TLE -
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 3 ms
5,248 KB
testcase_14 TLE -
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 TLE -
testcase_19 AC 2 ms
5,248 KB
testcase_20 TLE -
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 3 ms
5,248 KB
testcase_23 AC 2 ms
8,960 KB
権限があれば一括ダウンロードができます

ソースコード

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