結果
問題 | No.1630 Sorting Integers (Greater than K) |
ユーザー | siman |
提出日時 | 2023-05-04 14:32:33 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,580 bytes |
コンパイル時間 | 1,210 ms |
コンパイル使用メモリ | 142,068 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-05-01 23:19:55 |
合計ジャッジ時間 | 3,466 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 1 ms
6,944 KB |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | AC | 1 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 152 ms
6,940 KB |
testcase_17 | AC | 150 ms
6,944 KB |
testcase_18 | AC | 138 ms
6,940 KB |
testcase_19 | AC | 134 ms
6,940 KB |
testcase_20 | AC | 36 ms
6,940 KB |
testcase_21 | AC | 30 ms
6,944 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 117 ms
6,944 KB |
testcase_25 | AC | 17 ms
6,940 KB |
testcase_26 | AC | 136 ms
6,944 KB |
ソースコード
#include <cassert> #include <cmath> #include <algorithm> #include <iostream> #include <iomanip> #include <climits> #include <map> #include <queue> #include <set> #include <cstring> #include <vector> using namespace std; typedef long long ll; int C[10]; int N; string K; string f(int d) { string res = ""; int CC[10]; memcpy(CC, C, sizeof(C)); bool is_over = false; for (int i = 1; i <= N; ++i) { int v = K[i - 1] - '0'; if (i < d) { if (CC[v] > 0) { CC[v]--; res += to_string(v); } else { return res; } } else if (not is_over) { bool found = false; for (int j = v + 1; j <= 9 && not found; ++j) { if (CC[j] == 0) continue; found = true; CC[j]--; res += to_string(j); } if (not found) { if (CC[v] > 0 && i < N) { CC[v]--; res += to_string(v); } else { return res; } } else { is_over = true; } } else { for (int j = 1; j <= 9; ++j) { if (CC[j] == 0) continue; CC[j]--; res += to_string(j); break; } } } return res; } int main() { cin >> N >> K; for (int i = 1; i <= 9; ++i) { cin >> C[i]; } if (f(1).size() != N) { cout << -1 << endl; } else { int ok = 1; int ng = N; while (abs(ok - ng) >= 2) { int d = (ok + ng) / 2; string res = f(d); if (res.size() == N) { ok = d; } else { ng = d; } } cout << f(ok) << endl; } return 0; }