結果

問題 No.1722 [Cherry 3rd Tune C] In my way
ユーザー merlinmerlin
提出日時 2021-10-29 21:29:35
言語 Java
(openjdk 23)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 1,464 bytes
コンパイル時間 3,432 ms
コンパイル使用メモリ 85,140 KB
実行使用メモリ 39,220 KB
最終ジャッジ日時 2024-10-07 10:00:26
合計ジャッジ時間 6,398 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

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));
        StringBuilder sb=new StringBuilder();
        String s[]=bu.readLine().split(" ");
        int n=Integer.parseInt(s[0]),m=Integer.parseInt(s[1]);
        int a[][]=new int[n+m][2],ans[]=new int[n],i;

        s=bu.readLine().split(" ");
        for(i=0;i<n;i++)
        {
            a[i][0]=Integer.parseInt(s[i]);
            a[i][1]=i;
            ans[i]=-1;
        }
        s=bu.readLine().split(" ");
        for(i=0;i<m;i++)
        {
            a[n+i][0]=Integer.parseInt(s[i]);
            a[n+i][1]=-n-i;
        }

        Arrays.sort(a, new Comparator<int[]>() {
            @Override
            public int compare(int[] o1, int[] o2) {
                if(o1[0]>o2[0]) return 1;
                else if(o1[0]==o2[0]) return o1[1]<o2[1]?1:-1;
                else return -1;
            }});
        for(i=0;i<n+m;i++)
        if(a[i][1]>=0)
        {
            int j=i;
            while(j<n+m && a[j][1]>=0) j++;

            if(j<n+m)
            {
                int last=j,ele=a[j][0];
                for(j=i;j<last;j++) ans[a[j][1]]=ele-a[j][0];
            }
            i=j;
        }

        for(i=0;i<n;i++)
        if(ans[i]==-1) sb.append("Infinity\n");
        else sb.append(ans[i]+"\n");
        System.out.print(sb);
    }
}
0