結果
問題 | No.1630 Sorting Integers (Greater than K) |
ユーザー | 沙耶花 |
提出日時 | 2021-07-30 20:48:19 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 74 ms / 2,000 ms |
コード長 | 1,214 bytes |
コンパイル時間 | 4,365 ms |
コンパイル使用メモリ | 263,908 KB |
実行使用メモリ | 5,560 KB |
最終ジャッジ日時 | 2024-09-15 22:40:55 |
合計ジャッジ時間 | 5,977 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 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 | AC | 66 ms
5,560 KB |
testcase_17 | AC | 48 ms
5,428 KB |
testcase_18 | AC | 74 ms
5,436 KB |
testcase_19 | AC | 74 ms
5,496 KB |
testcase_20 | AC | 21 ms
5,376 KB |
testcase_21 | AC | 19 ms
5,376 KB |
testcase_22 | AC | 17 ms
5,376 KB |
testcase_23 | AC | 12 ms
5,376 KB |
testcase_24 | AC | 40 ms
5,376 KB |
testcase_25 | AC | 15 ms
5,376 KB |
testcase_26 | AC | 73 ms
5,376 KB |
ソースコード
#include <stdio.h> #include <bits/stdc++.h> #include <atcoder/all> using namespace atcoder; using mint = modint1000000007; using namespace std; #define rep(i,n) for (int i = 0; i < (n); ++i) #define Inf 1000000005 string get(vector<int> c){ string ret = ""; for(int i=9;i>=0;i--){ rep(j,c[i])ret += '0' + i; } return ret; } int main(){ int n; cin>>n; string K; cin>>K; vector<int> c(10,0); rep(i,9)cin>>c[i+1]; if(n<K.size()){ cout<<-1<<endl; return 0; } { string t(n-K.size(),'0'); K = t+K; } if(get(c)<=K){ cout<<-1<<endl; return 0; } int ok = 0,ng = n+1; while(ng-ok>1){ int mid = (ok+ng)/2; vector<int> cc = c; string temp = ""; bool f = true; rep(i,mid){ if(cc[K[i]-'0']<=0){ f=false; break; } temp += K[i]; cc[K[i]-'0']--; } if(f){ string t2 = get(cc); temp += t2; if(temp <= K)f=false; } if(f)ok = mid; else ng= mid; } //cout<<ok<<endl; string ans = ""; rep(i,ok){ ans += K[i]; c[K[i]-'0']--; } if(ok!=n){ rep(i,10){ if(c[i]==0)continue; if(i<=K[ok]-'0')continue; ans += '0'+i; c[i]--; break; } rep(i,10){ rep(j,c[i])ans += '0'+i; } } cout<<ans<<endl; return 0; }