結果

問題 No.2865 Base 10 Subsets 2
ユーザー VvyLwVvyLw
提出日時 2024-08-30 22:43:05
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,065 bytes
コンパイル時間 1,876 ms
コンパイル使用メモリ 148,804 KB
実行使用メモリ 13,760 KB
最終ジャッジ日時 2024-08-30 22:43:11
合計ジャッジ時間 5,404 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,760 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
#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 n;
    int64_t k, c = 0;
    std::cin >> n >> k;
    const int m = n.size();
    std::valarray<int> v(m);
    for(const auto &i: std::views::iota(0, m)) {
        v[i] = n[i] - '0';
    }
    const auto vtoi = [](const std::valarray<int> &v) -> int64_t {
        int64_t x = 0;
        for(const auto &e: v) {
            x += e;
            x *= 10;
        }
        x /= 10;
        return x;
    };
    const auto rec = [&](const auto &f, const int d) -> void {
        if(d == m) {
            if(++c == k) {
                std::cout << vtoi(v) << '\n';
            }
            return;
        }
        for(const auto &i: std::views::iota(0, v[d] + 1)) {
            v[d] = i;
            f(f, d + 1);
        }
    };
    rec(rec, 0);
}
0