結果

問題 No.1630 Sorting Integers (Greater than K)
ユーザー merlinmerlin
提出日時 2021-07-30 21:51:33
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,088 bytes
コンパイル時間 4,301 ms
コンパイル使用メモリ 74,480 KB
実行使用メモリ 56,188 KB
最終ジャッジ日時 2023-10-14 04:22:33
合計ジャッジ時間 8,470 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
49,272 KB
testcase_01 AC 44 ms
49,344 KB
testcase_02 AC 45 ms
49,328 KB
testcase_03 AC 45 ms
49,172 KB
testcase_04 AC 44 ms
49,364 KB
testcase_05 AC 45 ms
49,236 KB
testcase_06 WA -
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 43 ms
49,196 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 196 ms
56,156 KB
testcase_19 WA -
testcase_20 AC 157 ms
55,752 KB
testcase_21 AC 160 ms
55,540 KB
testcase_22 AC 181 ms
55,840 KB
testcase_23 AC 108 ms
54,556 KB
testcase_24 WA -
testcase_25 AC 224 ms
55,936 KB
testcase_26 AC 209 ms
56,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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;}
        StringBuilder ans=new StringBuilder(); boolean pos=true;
        if(n>m)
        {
            for(i=0;i<9;i++)
            while(c[i]-->0) ans.append(i+1);
            System.out.print(ans);
            return;
        }

        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.append(ch+1);
            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.append(i+1);
            System.out.print(ans);
            return;
        }

        char a2[]=ans.toString().toCharArray();
        if(!equal(a2,a)) {System.out.print(ans); return;}

        Arrays.fill(c,0);
        c[a[n-1]-'0'-1]++; int j2=-1;
        for(i=n-2;i>=0;i--)
        {
            int ch=-1,cur=a2[i]-'0'-1;
            for(j=0;j<9;j++)
            if(c[j]>0 && j>cur) {ch=j; break;}
            if(ch!=-1)
            {
                c[cur]++;
                c[ch]--;
                a2[i]=(char)(ch+'0'+1);
                j2=i+1;
                break;
            }
        }
        if(i==-1) {System.out.print(-1); return;}

        for(i=0;i<9;i++)
        while(c[i]-->0) a2[j2++]=(char)(i+'0'+1);
        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;
    }
}
0