結果

問題 No.1465 Archaea
ユーザー outline
提出日時 2021-04-02 22:01:46
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
MLE  
実行時間 -
コード長 1,405 bytes
コンパイル時間 6,445 ms
コンパイル使用メモリ 182,220 KB
最終ジャッジ日時 2025-01-20 09:16:59
ジャッジサーバーID
(参考情報)
judge2 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 MLE * 2
other AC * 3 WA * 3 TLE * 6 MLE * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <cmath>
#include <queue>
#include <string>
#include <map>
#include <set>
#include <stack>
#include <tuple>
#include <deque>
#include <array>
#include <numeric>
#include <bitset>
#include <iomanip>
#include <cassert>
#include <chrono>
#include <random>
#include <limits>
#include <iterator>
#include <functional>
#include <sstream>
#include <fstream>
#include <complex>
#include <cstring>
#include <unordered_map>
#include <unordered_set>
using namespace std;

using ll = long long;
constexpr int INF = 1001001001;
// constexpr int mod = 1000000007;
constexpr int mod = 998244353;

template<class T>
inline bool chmax(T& x, T y){
    if(x < y){
        x = y;
        return true;
    }
    return false;
}
template<class T>
inline bool chmin(T& x, T y){
    if(x > y){
        x = y;
        return true;
    }
    return false;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int N, K;
    cin >> N >> K;

    vector<set<int>> st(N + 1);
    st[N].emplace(0);
    for(int i = N; i > 1; --i){
        if(i % 2 == 0){
            for(auto x : st[i]){
                st[i / 2].emplace(x + 1);
            }
        }
        if(i - 3 > 0){
            for(auto x : st[i]){
                st[i - 3].emplace(x + 1);
            }
        }
    }

    cout << (st[1].count(K) ? "YES\n" : "NO\n");

    return 0;
}
0