結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
40,996 KB
testcase_01 AC 132 ms
40,704 KB
testcase_02 AC 133 ms
41,172 KB
testcase_03 AC 133 ms
41,060 KB
testcase_04 AC 135 ms
41,240 KB
testcase_05 AC 121 ms
40,364 KB
testcase_06 AC 134 ms
41,032 KB
testcase_07 AC 135 ms
41,048 KB
testcase_08 AC 121 ms
39,732 KB
testcase_09 AC 132 ms
40,996 KB
testcase_10 AC 132 ms
41,388 KB
testcase_11 AC 120 ms
40,112 KB
testcase_12 AC 121 ms
40,192 KB
testcase_13 AC 135 ms
41,132 KB
testcase_14 AC 132 ms
41,444 KB
testcase_15 AC 122 ms
40,048 KB
testcase_16 AC 360 ms
46,200 KB
testcase_17 AC 352 ms
46,256 KB
testcase_18 AC 293 ms
45,508 KB
testcase_19 AC 306 ms
45,556 KB
testcase_20 AC 301 ms
45,988 KB
testcase_21 AC 297 ms
46,952 KB
testcase_22 AC 283 ms
45,220 KB
testcase_23 AC 241 ms
44,100 KB
testcase_24 AC 308 ms
45,484 KB
testcase_25 AC 264 ms
44,344 KB
testcase_26 AC 282 ms
45,652 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()){
          StringBuilder sb = new StringBuilder();
          for(int i=0;i<9;i++){
          	for(int num=Cjust[i];num>0;num--){
              	sb.append((char)(i+'1')); 
            }
          }
          System.out.println(sb);
        }
      	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{
          StringBuilder sb = new StringBuilder();
          sb.append(K.substring(0,bign)).append((char)(lc+'1'));
          
         
          Cbig[lc]--;
          for(int j=0;j<9;j++){
            for(int k=0;k<Cbig[j];k++){
              sb.append((char)(j+'1'));
            }
          }
          System.out.println(sb);
        } 
        }
	}
}
0