結果

問題 No.602 隠されていたゲーム2
ユーザー knhrknhr
提出日時 2018-10-13 16:30:29
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 620 bytes
コンパイル時間 722 ms
コンパイル使用メモリ 59,352 KB
実行使用メモリ 13,636 KB
最終ジャッジ日時 2024-10-12 18:06:16
合計ジャッジ時間 5,799 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,636 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 1 ms
6,820 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 WA -
testcase_06 AC 1 ms
6,816 KB
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 2 ms
6,820 KB
testcase_16 AC 8 ms
6,816 KB
testcase_17 WA -
testcase_18 AC 663 ms
6,820 KB
testcase_19 WA -
testcase_20 AC 33 ms
6,816 KB
testcase_21 AC 37 ms
6,820 KB
testcase_22 WA -
testcase_23 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
using namespace std;
const int size=1e5+10;
int n;
int d[size];
int x,y;
int dist;
int ans;

int main()
{
	cin >> n;
	for(int i=0;i<n;i++)cin >> d[i];
	cin >> x >> y;
	
	dist=abs(x)+abs(y);
	
	//1
	ans=1;
	for(int i=0;i<n;i++)
	{
		if(dist==d[i])
		{
			cout << ans << endl;
			return 0;
		}
		if(d[i]>dist)d[i]=0;
	}
	
	//2
	ans=2;
	sort(d,d+n,greater<int>());
	for(int i=0;i<n;i++)//
	{
		if(d[i]>dist)continue;
		for(int j=i;j<n;j++)
		{
			if(d[i]+d[j]==dist)
			{
				cout << 2 << endl;
				return 0;
			}
			if(d[i]+d[j]<dist)break;
		}
	}
	
	cout << -1 << endl;
	return 0;
}
0