結果

問題 No.1630 Sorting Integers (Greater than K)
ユーザー karinohitokarinohito
提出日時 2021-07-16 11:57:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,351 ms / 2,000 ms
コード長 1,697 bytes
コンパイル時間 2,159 ms
コンパイル使用メモリ 78,676 KB
実行使用メモリ 55,288 KB
最終ジャッジ日時 2024-09-15 22:03:34
合計ジャッジ時間 14,370 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
40,872 KB
testcase_01 AC 135 ms
41,220 KB
testcase_02 AC 120 ms
39,912 KB
testcase_03 AC 129 ms
41,060 KB
testcase_04 AC 131 ms
41,224 KB
testcase_05 AC 133 ms
41,052 KB
testcase_06 AC 135 ms
41,040 KB
testcase_07 AC 131 ms
41,584 KB
testcase_08 AC 119 ms
39,884 KB
testcase_09 AC 133 ms
41,052 KB
testcase_10 AC 138 ms
41,276 KB
testcase_11 AC 139 ms
41,048 KB
testcase_12 AC 140 ms
41,248 KB
testcase_13 AC 135 ms
41,388 KB
testcase_14 AC 137 ms
40,912 KB
testcase_15 AC 140 ms
41,096 KB
testcase_16 AC 968 ms
50,232 KB
testcase_17 AC 1,091 ms
52,644 KB
testcase_18 AC 370 ms
46,112 KB
testcase_19 AC 361 ms
45,552 KB
testcase_20 AC 1,346 ms
54,244 KB
testcase_21 AC 1,342 ms
54,452 KB
testcase_22 AC 1,351 ms
55,288 KB
testcase_23 AC 238 ms
43,984 KB
testcase_24 AC 1,188 ms
52,816 KB
testcase_25 AC 243 ms
44,332 KB
testcase_26 AC 284 ms
45,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Collections;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
    
      	Scanner sc = new Scanner(System.in);
      	int N=sc.nextInt();
      	int bign=-1;
      	int lc=-1;
		String K = sc.next();
      	int[] Cjust=new int[9];
     	for(var i=0;i<9;i++){
          	Cjust[i]=sc.nextInt();
        }
      	int[] Cbig=new int[9];
      	for (int i=0;i<9;i++){
        	Cbig[i]=Cjust[i];
        }
		sc.close();

      	if(N<(int)K.length()){
          System.out.println(-1);
        }
      	else if(N>(int)K.length()){
          for(int i=0;i<9;i++){
          	for(int num=0;num<Cjust[i];num++){
				System.out.print((char)(i+'1')); 
            }
          }
        }
      	else{
          for (int i=0;i<N;i++){
            char Ki=K.charAt(i);
            for (int c=(int)(Ki-'1')+1;c<9;c++){
            	if(Cjust[c]>0){
                  for(int d=Math.max(bign,0);d<i;d++){
                  	Cbig[(int)K.charAt(d)-'1']--;
                  }
                  bign=i;
                  lc=c;
                  break;
                }
            }
            if(K.charAt(i)!='0'&&Cjust[K.charAt(i)-'1']>0){
              Cjust[K.charAt(i)-'1']--;
            }
            else break;
        }
        if(bign==-1){
          System.out.println(-1); 
        }
        else{
          System.out.print(K.substring(0,bign));
          System.out.print((char)(lc+'1'));
          Cbig[lc]--;
          for(int j=0;j<9;j++){
            for(int k=0;k<Cbig[j];k++){
              System.out.print((char)(j+'1'));
            }
          }
          System.out.println("");
        } 
        }
	}
}
0