結果

問題 No.507 ゲーム大会(チーム決め)
ユーザー fjafjafjafjafjafja
提出日時 2017-09-21 17:43:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 758 ms / 3,000 ms
コード長 1,266 bytes
コンパイル時間 3,243 ms
コンパイル使用メモリ 77,608 KB
実行使用メモリ 50,660 KB
最終ジャッジ日時 2024-11-08 19:30:06
合計ジャッジ時間 11,902 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,516 KB
testcase_01 AC 126 ms
41,348 KB
testcase_02 AC 125 ms
41,372 KB
testcase_03 AC 125 ms
41,172 KB
testcase_04 AC 129 ms
41,256 KB
testcase_05 AC 128 ms
41,024 KB
testcase_06 AC 130 ms
41,356 KB
testcase_07 AC 615 ms
50,660 KB
testcase_08 AC 670 ms
50,472 KB
testcase_09 AC 517 ms
48,936 KB
testcase_10 AC 534 ms
48,632 KB
testcase_11 AC 550 ms
48,528 KB
testcase_12 AC 559 ms
48,176 KB
testcase_13 AC 758 ms
48,820 KB
testcase_14 AC 710 ms
48,748 KB
testcase_15 AC 692 ms
48,588 KB
testcase_16 AC 664 ms
48,840 KB
testcase_17 AC 113 ms
40,444 KB
testcase_18 AC 127 ms
41,408 KB
testcase_19 AC 111 ms
40,252 KB
testcase_20 AC 126 ms
41,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Arrays;
import java.util.Scanner;

public class N507
{
	static int[] a,buf;
	static int k,n,m,ans;
	public static void main(String[] args)
	{
		Scanner sc = new Scanner(System.in);
		n=sc.nextInt();
		m=sc.nextInt();
		int min=0,max=n-2;
		a=new int[n-1];
		k=sc.nextInt();//k a[0]-a[n-2]
		for(int i=0;i<n-1;i++)
		{
			a[i]=sc.nextInt();
		}
		Arrays.sort(a);
		//for(int aa:a){System.out.print(aa);}System.out.println();
		if(isok(min)){ans=a[min];}
		else if(!isok(max)){ans=-1;}
		else
		{
			ans=(int)Math.ceil((min+max)/2);
			while(max-min>1)
			{
				//System.out.println("min max"+min+" "+max);
				ans=(int)Math.ceil((min+max)/2);
				if(isok(ans)){max=ans;}//System.out.println("ind="+ans+" true");}
				else{min=ans;}//System.out.println("ind="+ans+" false");}
			}
			ans=a[max];
		}
		System.out.println(ans);



	}
	static boolean isok(int ind)
	{
		int me=k+a[ind];
		int rank=1,buf=-1;
		int end=0;
		//System.out.println("ind="+ind);
		for(int i=n-2;i>=0;i--)
		{
			if(ind==i){continue;}
			for(int j=buf+1;j<i;j++)
			{
				if(ind==j){continue;}
				buf=j;
				if(me<a[i]+a[j]){rank++;break;}//System.out.println("a["+i+"]+a["+j+"]="+(a[i]+a[j])+"は"+(rank-1)+"位");break;}
			}
		}
		return rank<=m;
	}
}
0