結果
問題 | No.1630 Sorting Integers (Greater than K) |
ユーザー | merlin |
提出日時 | 2021-07-30 21:30:09 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,621 bytes |
コンパイル時間 | 2,458 ms |
コンパイル使用メモリ | 79,684 KB |
実行使用メモリ | 53,276 KB |
最終ジャッジ日時 | 2024-09-15 23:05:39 |
合計ジャッジ時間 | 8,015 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 90 ms
37,860 KB |
testcase_01 | AC | 105 ms
39,728 KB |
testcase_02 | AC | 56 ms
37,056 KB |
testcase_03 | AC | 85 ms
38,000 KB |
testcase_04 | AC | 84 ms
38,428 KB |
testcase_05 | AC | 83 ms
38,284 KB |
testcase_06 | AC | 86 ms
38,040 KB |
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 | 84 ms
37,968 KB |
testcase_16 | TLE | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
ソースコード
import java.io.*; import java.util.*; class Main { public static void main(String args[])throws Exception { BufferedReader bu=new BufferedReader(new InputStreamReader(System.in)); String s[]=bu.readLine().split(" "); int n=Integer.parseInt(s[0]); char a[]=s[1].toCharArray(); int i,j,c[]=new int[9],m=a.length; s=bu.readLine().split(" "); for(i=0;i<9;i++) c[i]=Integer.parseInt(s[i]); if(m>n) {System.out.print(-1); return;} String ans=""; boolean pos=true; for(i=0;i<a.length;i++) { int ch=-1,cur=a[i]-'0'-1; for(j=0;j<9;j++) if(c[j]>0 && j>=cur) {ch=j; break;} if(ch==-1) {pos=false; break;} ans+=(char)(ch+1+'0'); c[ch]--; if(ch>cur) break; } if(!pos) {System.out.print(-1); return;} if(ans.length()<n) { for(i=0;i<9;i++) while(c[i]-->0) ans+=(char)(i+1+'0'); System.out.print(ans); return; } char a2[]=ans.toCharArray(); if(!equal(a2,a)) {System.out.print(ans); return;} int max=n-1; for(i=n-2;i>=0;i--) if(a2[i]<a2[max]) break; else if(a2[i]>a2[max]) max=i; if(i==-1) {System.out.print(-1); return;} char t=a2[max]; a2[max]=a2[i]; a2[i]=t; Arrays.sort(a2,i+1,n); System.out.print(new String(a2)); } static boolean equal(char a[],char b[]) { for(int i=0;i<a.length;i++) if(a[i]!=b[i]) return false; return true; } }