結果
問題 | No.602 隠されていたゲーム2 |
ユーザー | ryoissy |
提出日時 | 2017-12-02 00:16:51 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 32 ms / 2,000 ms |
コード長 | 958 bytes |
コンパイル時間 | 1,624 ms |
コンパイル使用メモリ | 166,772 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-15 23:56:46 |
合計ジャッジ時間 | 2,771 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 1 ms
5,248 KB |
testcase_09 | AC | 1 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 1 ms
5,248 KB |
testcase_12 | AC | 1 ms
5,248 KB |
testcase_13 | AC | 1 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 6 ms
5,248 KB |
testcase_17 | AC | 10 ms
5,248 KB |
testcase_18 | AC | 23 ms
5,248 KB |
testcase_19 | AC | 29 ms
5,248 KB |
testcase_20 | AC | 32 ms
5,248 KB |
testcase_21 | AC | 18 ms
5,248 KB |
testcase_22 | AC | 31 ms
5,248 KB |
testcase_23 | AC | 17 ms
5,248 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); | ~~~~~^~~~~~~~~~~~~~
ソースコード
#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){ rest=labs(rest); } 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; }