結果
問題 | No.602 隠されていたゲーム2 |
ユーザー | Lepton_s |
提出日時 | 2017-12-03 10:30:12 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 81 ms / 2,000 ms |
コード長 | 1,882 bytes |
コンパイル時間 | 1,221 ms |
コンパイル使用メモリ | 104,376 KB |
実行使用メモリ | 10,368 KB |
最終ジャッジ日時 | 2024-05-09 11:35:15 |
合計ジャッジ時間 | 2,706 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 3 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 | 3 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 | 12 ms
5,376 KB |
testcase_17 | AC | 25 ms
5,436 KB |
testcase_18 | AC | 64 ms
8,832 KB |
testcase_19 | AC | 80 ms
10,368 KB |
testcase_20 | AC | 71 ms
10,240 KB |
testcase_21 | AC | 61 ms
10,240 KB |
testcase_22 | AC | 81 ms
10,368 KB |
testcase_23 | AC | 73 ms
10,240 KB |
ソースコード
#include <algorithm> #include <climits> #include <cmath> #include <cstdio> #include <cstdlib> #include <ctime> #include <iostream> #include <sstream> #include <functional> #include <map> #include <string> #include <cstring> #include <vector> #include <queue> #include <stack> #include <deque> #include <set> #include <list> #include <numeric> using namespace std; typedef long long ll; typedef unsigned long long ull; typedef pair<ll,ll> P; const double PI = 3.14159265358979323846; const double EPS = 1e-12; const ll INF = 1LL<<29; const ll mod = 1e9+7; #define rep(i,n) for(int (i)=0;(i)<(ll)(n);++(i)) #define repd(i,n,d) for(ll (i)=0;(i)<(ll)(n);(i)+=(d)) #define all(v) (v).begin(), (v).end() #define pb(x) push_back(x) #define mp(x,y) make_pair((x),(y)) #define mset(m,v) memset((m),(v),sizeof(m)) #define chmin(X,Y) ((X)>(Y)?X=(Y),true:false) #define chmax(X,Y) ((X)<(Y)?X=(Y),true:false) #define fst first #define snd second #define UNIQUE(x) (x).erase(unique(all(x)),(x).end()) template<class T> ostream &operator<<(ostream &os, const vector<T> &v){int n=v.size();rep(i,n)os<<v[i]<<(i==n-1?"":" ");return os;} map<ll, int> dc; int main(){ int n; cin>>n; vector<ll> x(n); rep(i, n) cin>>x[i]; sort(all(x)); ll a, b; cin>>a>>b; a = abs(a); b = abs(b); ll c = abs(a)+abs(b); if(c==0){ cout<<0<<endl; return 0; } rep(i, n){ if(c==x[i]){ cout<<1<<endl; return 0; } dc[x[i]] = 1; } ll mn1 = 1e10, mx1 = -1e10; ll mn2 = 1e10, mx2 = -1e10; bool ok = false; rep(i, n){ if((x[i]+c)%2){ mn1 = min(mn1, abs(x[i]-c)); mx1 = max(mx1, x[i]+c); } else { mn2 = min(mn2, abs(x[i]-c)); mx2 = max(mx2, x[i]+c); } if(x[i]%2){ if(mn1<=x[i] && x[i]<=mx1) ok = true; } else { if(mn2<=x[i] && x[i]<=mx2) ok = true; } } //cerr<<mn1<<" "<<mx1<<" "<<mn2<<" "<<mx2<<endl; if(ok) cout<<2<<endl; else { cout<<-1<<endl; } return 0; }