結果

問題 No.2863 Base 10 Subsets 1
ユーザー VvyLwVvyLw
提出日時 2024-08-30 22:06:58
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 1,045 bytes
コンパイル時間 2,125 ms
コンパイル使用メモリ 144,664 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-07 16:21:48
合計ジャッジ時間 3,416 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 61 ms
6,944 KB
testcase_03 AC 57 ms
6,944 KB
testcase_04 AC 99 ms
6,944 KB
testcase_05 AC 14 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 61 ms
6,944 KB
testcase_08 AC 6 ms
6,944 KB
testcase_09 AC 11 ms
6,944 KB
testcase_10 AC 45 ms
6,944 KB
testcase_11 AC 4 ms
6,944 KB
testcase_12 AC 8 ms
6,940 KB
testcase_13 AC 51 ms
6,940 KB
testcase_14 AC 26 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 35 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("O2")
#ifdef local
#include <C++/core/io/debug_print.hpp>
#else
#define dump(...) void(0);
#endif

#include <iostream>
#include <valarray>
#include <ranges>
namespace man {

}
int main() {
    std::cin.tie(nullptr) -> sync_with_stdio(false);
    std::string a;
    int b;
    std::cin >> a >> b;
    const int n = a.size();
    std::valarray<int> v(n);
    for(const auto &i: std::views::iota(0, n)) {
        v[i] = a[i] - '0';
    }
    const auto vtoi = [](const std::valarray<int> &v) -> int {
        int64_t x = 0;
        for(const auto &e: v) {
            x += e;
            x *= 10;
        }
        x /= 10;
        return x;
    };
    bool ok = false;
    const auto rec = [&](const auto &f, const int d) -> void {
        if(d == n) {
            dump(vtoi(v));
            ok |= vtoi(v) == b;
            return;
        }
        for(const auto &i: std::views::iota(0, v[d] + 1)) {
            v[d] = i;
            f(f, d + 1);
        }
    };
    rec(rec, 0);
    std::cout << (ok ? "Yes\n" : "No\n");
}
0