結果
問題 | No.1630 Sorting Integers (Greater than K) |
ユーザー | nawawan |
提出日時 | 2021-07-30 20:58:12 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,907 bytes |
コンパイル時間 | 1,662 ms |
コンパイル使用メモリ | 174,616 KB |
実行使用メモリ | 5,784 KB |
最終ジャッジ日時 | 2024-09-15 22:48:07 |
合計ジャッジ時間 | 2,978 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 18 ms
5,656 KB |
testcase_19 | WA | - |
testcase_20 | AC | 18 ms
5,660 KB |
testcase_21 | AC | 17 ms
5,660 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 15 ms
5,376 KB |
testcase_26 | AC | 18 ms
5,784 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int N; string K; cin >> N; cin >> K; vector<int> c(10); for(int i = 1; i < 10; i++) cin >> c[i]; string ma; for(int i = 9; i >= 0; i--){ for(int k = 0; k < c[i]; k++){ ma += ('0' + i); } } if(ma <= K) cout << -1 << endl; else{ int sz = K.size(); string ans; vector<int> cnt(10); for(int i = 0; i < sz; i++){ cnt[K[i] - '0']++; } bool f = true; for(int i = 0; i < 10; i++){ if(c[i] != cnt[i]){ f = false; break; } } if(f){ set<int> s; for(int i = sz - 1; i >= 0; i--){ auto ite = s.lower_bound(K[i] - '0' + 1); if(ite != s.end()){ for(int j = i + 1; j < sz; j++){ if(K[j] - '0' == *ite){ swap(K[i], K[j]); cout << K << endl; return 0; } } } s.insert(K[i] - '0'); } } for(int i = 0; i < sz; i++){ int ind = K[i] - '0'; if(c[ind] == 0){ for(int j = ind + 1; j < 10; j++){ if(c[j] > 0){ ans += '0' + j; c[j]--; break; } } for(int j = 0; j < 10; j++){ for(int k = 0; k < c[j]; k++){ ans += '0' + j; } } cout << ans << endl; return 0; } else{ ans += '0' + ind; c[ind]--; } } } }