結果

問題 No.602 隠されていたゲーム2
ユーザー kuuso1kuuso1
提出日時 2017-12-02 03:58:24
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,747 bytes
コンパイル時間 1,019 ms
コンパイル使用メモリ 107,520 KB
実行使用メモリ 28,288 KB
最終ジャッジ日時 2024-05-06 00:53:12
合計ジャッジ時間 2,718 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
17,792 KB
testcase_01 AC 22 ms
18,048 KB
testcase_02 AC 21 ms
17,792 KB
testcase_03 WA -
testcase_04 AC 22 ms
18,048 KB
testcase_05 AC 22 ms
17,920 KB
testcase_06 AC 22 ms
18,048 KB
testcase_07 WA -
testcase_08 AC 25 ms
17,792 KB
testcase_09 AC 22 ms
17,792 KB
testcase_10 AC 25 ms
17,920 KB
testcase_11 AC 24 ms
17,792 KB
testcase_12 AC 23 ms
17,920 KB
testcase_13 AC 23 ms
17,792 KB
testcase_14 AC 23 ms
17,920 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 44 ms
20,480 KB
testcase_18 AC 72 ms
26,112 KB
testcase_19 AC 83 ms
27,648 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 82 ms
27,776 KB
testcase_23 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;

class TEST{
	static void Main(){
		Sol mySol =new Sol();
		mySol.Solve();
	}
}

class Sol{
	public void Solve(){
		
		
		Array.Sort(D);
		if(CheckOne()){
			Console.WriteLine(1);
			return;
		}
		if(CheckTwo()){
			Console.WriteLine(2);
			return;
		}
		Console.WriteLine(-1);
		
	}
	
	bool CheckOne(){
		for(int i=0;i<N;i++){
			if(X + Y == D[i]) return true;
		}
		return false;
	}
	
	bool CheckTwo(){
		long T = X + Y;
		for(int i=0;i<N;i++){
			long r0 = D[i];
			if(T <= 2 * r0) return true;
			if(D[N-1] + r0 < T) continue;
			int l = i + 1;
			int r = N;
			if(D[l] + r0 >= T){
				if(D[l] - r0 <= T) return true;
				continue;
			}
			while(r - l > 1){
				int c = (r + l) / 2;
				if(D[c] + r0 < T){
					l = c;
				} else {
					r = c;
				}
			}
			if(r == N) continue;
			if(D[r] - r0 <= T) return true;
		}
		return false;
	}
	
	
	
	
	
	
	
	int N;
	long[] D;
	long X,Y;
	public Sol(){
		N = ri();
		D = rla();
		var d = rla();
		X = d[0]; Y = d[1];
		if(X < 0) X *= -1;
		if(Y < 0) Y *= -1;
		
	}

	static String rs(){return Console.ReadLine();}
	static int ri(){return int.Parse(Console.ReadLine());}
	static long rl(){return long.Parse(Console.ReadLine());}
	static double rd(){return double.Parse(Console.ReadLine());}
	static String[] rsa(char sep=' '){return Console.ReadLine().Split(sep);}
	static int[] ria(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>int.Parse(e));}
	static long[] rla(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>long.Parse(e));}
	static double[] rda(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>double.Parse(e));}
}
0