結果
問題 | No.1630 Sorting Integers (Greater than K) |
ユーザー | karinohito |
提出日時 | 2021-07-15 15:52:25 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,877 bytes |
コンパイル時間 | 2,037 ms |
コンパイル使用メモリ | 172,528 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-09-15 22:00:13 |
合計ジャッジ時間 | 5,491 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 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 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | TLE | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
ソースコード
//#include <atcoder/all> #include<bits/stdc++.h> using namespace std; //using namespace atcoder; using ll = long long; #define all(A) A.begin(),A.end() using vll = vector<ll>; #define rep(i, n) for (long long i = 0; i < (long long)(n); i++) int main() { ll N; string K; cin >> N >> K; vll Cj(9); rep(i, 9)cin >> Cj[i]; vll Cb = Cj; if (N < K.size()) { cout << -1 << endl; return 0; } else while(N>K.size())K = '0' + K; bool Ch = true; string anj = ""; string an2 = ""; string an3 = ""; ll itr=0; rep(i, N) { Ch = true; rep(k, 9) { if (K[i] >= (k + '1')||Cj[k] <= 0)continue; //an2 = anj + char(k + '1'); for(ll j=itr;j<i;j++){ if(j<an2.size()){ an2[j]=anj[j]; } else{ an2.push_back(anj[j]); } } an2.push_back(char(k + '1')); Cb = Cj; Cb[k]--; Ch = false; break; } if (Ch) { rep(k, 9) { if (Cb[k] <= 0)continue; an2 .push_back(k + '1'); Cb[k]--; break; } } Ch = true; rep(k, 9) { if (K[i] > (k + '1')||Cj[k] <= 0)continue; if (K[i] == (k + '1')) { anj.push_back(K[i]); Cj[k]--; Ch = false; break; } } if (Ch) { rep(j, 9) { rep(k, Cb[j]) { an2.push_back((j + '1')); } } if (an2 > K)cout << an2 << endl; else cout << -1 << endl; return 0; } } cout << an2 << endl; }