結果
| 問題 | No.602 隠されていたゲーム2 | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2017-12-18 15:47:06 | 
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) | 
| 結果 | 
                                TLE
                                 
                            (最新) 
                                AC
                                 
                            (最初) | 
| 実行時間 | - | 
| コード長 | 662 bytes | 
| コンパイル時間 | 621 ms | 
| コンパイル使用メモリ | 64,984 KB | 
| 実行使用メモリ | 10,496 KB | 
| 最終ジャッジ日時 | 2024-12-16 00:07:28 | 
| 合計ジャッジ時間 | 4,648 ms | 
| ジャッジサーバーID (参考情報) | judge1 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 20 TLE * 1 | 
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:12:44: warning: format ‘%d’ expects argument of type ‘int*’, but argument 2 has type ‘ll*’ {aka ‘long long int*’} [-Wformat=]
   12 |         for (int i = 0; i < n; i++)scanf("%d", d + i);
      |                                           ~^   ~~~~~
      |                                            |     |
      |                                            int*  ll* {aka long long int*}
      |                                           %lld
main.cpp:12:41: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   12 |         for (int i = 0; i < n; i++)scanf("%d", d + i);
      |                                    ~~~~~^~~~~~~~~~~~~
            
            ソースコード
#include <iostream>
#include <algorithm>
#include <cstring>
#include <cmath>
using namespace std;
typedef long long int ll;
const ll N = 100000;
ll d[N],n,cp;
int main() {
	cin >> n;
	for (int i = 0; i < n; i++)scanf("%d", d + i);
	sort(d , d + n);
	ll x, y; cin >> x >> y;
	cp = abs(x) + abs(y);
	if (cp == 0) { cout << 0 << endl; goto end; }
	if (find(d, d + n, cp) - d < n) { cout << 1 << endl; goto end; }
	for (int i = 0; i < n; i++) {
		ll lb = abs(cp - d[i]), ub = (cp + d[i]);
		for (int j = lower_bound(d, d + n, lb) - d; j<n&&d[j] <= ub; j++) {
			if (d[j] % 2 == ub % 2) { cout << 2 << endl; goto end; }
		}
	}
	cout << -1 << endl;
end:;
	return 0;
}
            
            
            
        