結果
問題 | No.602 隠されていたゲーム2 |
ユーザー | kuuso1 |
提出日時 | 2017-12-02 22:52:31 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,188 bytes |
コンパイル時間 | 5,220 ms |
コンパイル使用メモリ | 108,160 KB |
実行使用メモリ | 29,056 KB |
最終ジャッジ日時 | 2024-05-06 01:54:32 |
合計ジャッジ時間 | 2,603 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
18,816 KB |
testcase_01 | AC | 22 ms
17,664 KB |
testcase_02 | AC | 23 ms
18,560 KB |
testcase_03 | WA | - |
testcase_04 | AC | 23 ms
18,560 KB |
testcase_05 | AC | 24 ms
18,816 KB |
testcase_06 | AC | 22 ms
17,792 KB |
testcase_07 | AC | 21 ms
18,048 KB |
testcase_08 | AC | 23 ms
18,816 KB |
testcase_09 | AC | 22 ms
18,688 KB |
testcase_10 | AC | 23 ms
18,816 KB |
testcase_11 | AC | 22 ms
18,816 KB |
testcase_12 | AC | 24 ms
19,072 KB |
testcase_13 | AC | 23 ms
18,560 KB |
testcase_14 | AC | 24 ms
18,816 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 48 ms
21,504 KB |
testcase_18 | AC | 76 ms
26,880 KB |
testcase_19 | AC | 85 ms
28,928 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 79 ms
28,800 KB |
testcase_23 | WA | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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(CheckZero()){ Console.WriteLine(0); return; } if(CheckOne()){ Console.WriteLine(1); return; } if(CheckTwo()){ Console.WriteLine(2); return; } Console.WriteLine(-1); } bool CheckZero(){ return X == 0 && Y == 0; } bool CheckOne(){ for(int i=0;i<N;i++){ if(X + Y == D[i]) return true; } return false; } bool CheckTwo(){ long[] TT = new long[]{X - Y, X + Y}; if(TT.Max() <= 2 * D[N-1]) return true; for(int i=0;i<N-1;i++){ long r0 = D[i]; if(D[i+1] - r0 > TT[0]) continue; if(D[N-1] + r0 < TT[0]) continue; int l,r,ll,rr; l = i + 1; r = N; while(r - l > 1){ int c = (r + l) / 2; if(D[c] - r0 <= TT[0]){ l = c; } else { r = c; } } ll = l; l = i + 1; r = N; while(r - l > 1){ int c = (r + l) / 2; if(D[c] + r0 < TT[0]){ l = c; } else { r = c; } } rr = r; if(D[ll] - r0 <= TT[1] && TT[1] <= D[rr] + r0) 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; if(Y > X) { Swap(ref X, ref Y);} } void Swap<T>(ref T x, ref T y){ T tmp = x; x = y; y = tmp; } 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));} }