結果
問題 | No.1630 Sorting Integers (Greater than K) |
ユーザー | merlin |
提出日時 | 2021-07-30 22:23:06 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,997 bytes |
コンパイル時間 | 2,582 ms |
コンパイル使用メモリ | 78,124 KB |
実行使用メモリ | 44,120 KB |
最終ジャッジ日時 | 2024-09-16 00:52:17 |
合計ジャッジ時間 | 5,899 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 50 ms
37,060 KB |
testcase_01 | RE | - |
testcase_02 | AC | 51 ms
36,980 KB |
testcase_03 | RE | - |
testcase_04 | AC | 52 ms
36,860 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | WA | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 50 ms
36,880 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 199 ms
43,512 KB |
testcase_19 | WA | - |
testcase_20 | AC | 170 ms
43,268 KB |
testcase_21 | AC | 169 ms
42,564 KB |
testcase_22 | RE | - |
testcase_23 | AC | 111 ms
41,128 KB |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | AC | 201 ms
43,940 KB |
ソースコード
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[10],m=a.length; s=bu.readLine().split(" "); for(i=0;i<9;i++) c[i+1]=Integer.parseInt(s[i]); if(m>n) {System.out.print(-1); return;} StringBuilder ans=new StringBuilder(); boolean pos=true; if(n>m) { System.out.print(c[-1]); for(i=1;i<10;i++) while(c[i]-->0) ans.append(i); System.out.print(ans); return; } for(i=0;i<a.length;i++) { int ch=-1,cur=a[i]-'0'; for(j=1;j<10;j++) if(c[j]>0 && j>=cur) {ch=j; break;} if(ch==-1) {pos=false; break;} ans.append(ch); c[ch]--; if(ch>cur) break; } if(!pos) {System.out.print(-1); return;} if(ans.length()<n) { for(i=1;i<10;i++) while(c[i]-->0) ans.append(i); System.out.print(ans); return; } char a2[]=ans.toString().toCharArray(); if(!equal(a2,a)) {System.out.print(ans); return;} System.out.print(c[-1]); for(i=n-2;i>=0;i--) if(a2[i]<a2[i+1]) break; if(i==-1) {System.out.print(-1); return;} //System.out.println(i); j=i; int min=i+1; for(i=j+1;i<n;i++) if(a2[i]>a2[j] && a2[i]<a2[min]) min=i; //System.out.println(j+" "+min); char t=a2[min]; a2[min]=a2[j]; a2[j]=t; Arrays.sort(a2,j+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; } }