結果
問題 | No.1630 Sorting Integers (Greater than K) |
ユーザー | H3PO4 |
提出日時 | 2023-10-11 17:58:36 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 18 ms / 2,000 ms |
コード長 | 1,739 bytes |
コンパイル時間 | 862 ms |
コンパイル使用メモリ | 74,388 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-13 16:56:51 |
合計ジャッジ時間 | 2,079 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 17 ms
6,944 KB |
testcase_17 | AC | 18 ms
6,940 KB |
testcase_18 | AC | 15 ms
6,940 KB |
testcase_19 | AC | 15 ms
6,940 KB |
testcase_20 | AC | 14 ms
6,940 KB |
testcase_21 | AC | 13 ms
6,944 KB |
testcase_22 | AC | 14 ms
6,940 KB |
testcase_23 | AC | 13 ms
6,944 KB |
testcase_24 | AC | 16 ms
6,944 KB |
testcase_25 | AC | 15 ms
6,944 KB |
testcase_26 | AC | 14 ms
6,944 KB |
ソースコード
#include <array> #include <iostream> #include <string> #include <vector> inline int ctoi(const char &c) { return (int)c - '0'; }; inline char itoc(const int &n) { return (char)n + '0'; }; std::string solve(const int N, const std::string &K, const std::array<int, 9> &C) { if (K.size() > N) return "-1"; if (K.size() < N) { // 一番小さくなるように作る std::string res; for (int i = 1; i < 10; i++) { res += std::string(C.at(i - 1), char(i) + '0'); } return res; } // i桁目より上の判定 int max_i = K.size() - 1; std::array<int, 9> D; for (int i = 0; i < 9; i++) D.at(i) = C.at(i); for (int i = 0; i < K.size() - 1; i++) { int k = ctoi(K.at(i)); if (k == 0) { max_i = i; break; } if (D.at(k - 1) <= 0) { max_i = i; break; } D.at(k - 1)--; } for (int i = max_i; i >= 0; i--) { std::array<int, 9> used; for (int j = 0; j < 9; j++) used.at(j) = D.at(j); for (int n = ctoi(K.at(i)) + 1; n < 10; n++) { if (used.at(n - 1) <= 0) continue; used.at(n - 1)--; std::string res = K.substr(0, i); res += itoc(n); for (int i = 1; i < 10; i++) { res += std::string(used.at(i - 1), itoc(i)); } return res; } if (i == 0) break; D.at(ctoi(K.at(i - 1)) - 1)++; } return "-1"; } int main() { int N; std::string K; std::array<int, 9> C; std::cin >> N >> K; for (int i = 0; i < 9; i++) std::cin >> C.at(i); std::cout << solve(N, K, C) << std::endl; }