結果

問題 No.602 隠されていたゲーム2
ユーザー ryoissyryoissy
提出日時 2017-12-02 00:15:48
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 990 bytes
コンパイル時間 2,222 ms
コンパイル使用メモリ 165,128 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 22:46:26
合計ジャッジ時間 3,174 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 WA -
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 10 ms
5,376 KB
testcase_18 AC 26 ms
5,376 KB
testcase_19 AC 31 ms
5,376 KB
testcase_20 WA -
testcase_21 AC 19 ms
5,376 KB
testcase_22 AC 34 ms
5,376 KB
testcase_23 AC 19 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:18:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   18 |         scanf("%d",&n);
      |         ~~~~~^~~~~~~~~
main.cpp:20:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   20 |                 scanf("%d",&d[i]);
      |                 ~~~~~^~~~~~~~~~~~
main.cpp:23:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   23 |         scanf("%d%d",&x,&y);
      |         ~~~~~^~~~~~~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>
#define MOD 1000000007LL
using namespace std;
typedef long long ll;
typedef pair<int,int> P;

int n;
int d[100001];
int x,y;
vector<ll> vi[2];

ll labs(ll v){
	if(v<0LL)return -v;
	return v;
}

int main(void){
	scanf("%d",&n);
	for(int i=0;i<n;i++){
		scanf("%d",&d[i]);
		vi[d[i]%2].push_back(d[i]);
	}
	scanf("%d%d",&x,&y);
	if(x==0 && y==0){
		printf("0\n");
		return 0;
	}
	sort(d,d+n);
	sort(vi[0].begin(),vi[0].end());
	sort(vi[1].begin(),vi[1].end());
	for(int i=0;i<n;i++){
		if(d[i]==(abs(x)+abs(y))){
			printf("1\n");
			return 0;
		}
	}
	for(int i=0;i<n;i++){
		ll rest=labs((ll)x)+labs((ll)y)-d[i];
		ll maxi=labs((ll)x)+labs((ll)y)+(ll)d[i];
		if(rest<0){
			if(maxi%2LL==0)rest=0;
			if(maxi%2LL==0)rest=1;
		}
		if(vi[rest%2].size()==0)continue;
		int vo=lower_bound(vi[rest%2].begin(),vi[rest%2].end(),rest)-vi[rest%2].begin();
		if(vo!=vi[rest%2].size() && vi[rest%2][vo]<=maxi){
			printf("2\n");
			return 0;
		}
	}
	printf("-1\n");
	return 0;
}
0