結果
問題 | No.602 隠されていたゲーム2 |
ユーザー | mamekin |
提出日時 | 2018-01-13 01:06:53 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,363 bytes |
コンパイル時間 | 1,254 ms |
コンパイル使用メモリ | 109,460 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-06 10:17:00 |
合計ジャッジ時間 | 2,302 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | AC | 2 ms
5,376 KB |
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 | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 8 ms
5,376 KB |
testcase_17 | WA | - |
testcase_18 | AC | 40 ms
5,376 KB |
testcase_19 | WA | - |
testcase_20 | AC | 38 ms
5,376 KB |
testcase_21 | AC | 32 ms
5,376 KB |
testcase_22 | WA | - |
testcase_23 | AC | 44 ms
5,376 KB |
ソースコード
#define _USE_MATH_DEFINES #include <cstdio> #include <iostream> #include <sstream> #include <fstream> #include <iomanip> #include <algorithm> #include <cmath> #include <complex> #include <string> #include <vector> #include <list> #include <queue> #include <stack> #include <set> #include <map> #include <bitset> #include <numeric> #include <limits> #include <climits> #include <cfloat> #include <functional> #include <iterator> using namespace std; int solve(const vector<int>& v, int dist) { if(dist == 0) return 0; if(find(v.begin(), v.end(), dist) != v.end()) return 1; vector<vector<int> > v2(2); for(int a : v) v2[a%2].push_back(a); for(int i=0; i<2; ++i) sort(v2[i].begin(), v2[i].end()); for(int i=0; i<2; ++i){ int j = (dist - i) % 2; int k = v2[j].size() - 1; for(int a : v2[i]){ while(k >= 0 && v2[j][k] > a + dist) -- k; if(k >= 0){ int b = v2[j][k]; if(dist <= a + b && abs(a - b) <= dist) return 2; } } } return -1; } int main() { int n; cin >> n; vector<int> v(n); for(int i=0; i<n; ++i) cin >> v[i]; int x, y; cin >> x >> y; int dist = abs(x) + abs(y); cout << solve(v, dist) << endl; return 0; }