結果
問題 | No.678 2Dシューティングゲームの必殺ビーム |
ユーザー | NaruY |
提出日時 | 2018-05-17 14:58:34 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,217 bytes |
コンパイル時間 | 1,507 ms |
コンパイル使用メモリ | 166,988 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-28 13:30:13 |
合計ジャッジ時間 | 2,526 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | AC | 3 ms
5,376 KB |
testcase_04 | AC | 12 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
ソースコード
#include <bits/stdc++.h> #define FOR(i,a,b) for(int i=(a);i<(b);++i) #define REP(i,n) for(int i=0;i<(n);++i) #define FORq(i, m, n) for(int i = (m);i <= (n);++i) #define SCD(n) scanf("%d",&n) #define SCD2(m,n) scanf("%d%d",&m,&n) #define SCD3(m,n,k) scanf("%d%d%d",&m,&n,&k) #define PB push_back #define MP make_pair #define ARSCD(A,N) REP(i,N){SCD(A[i]);} #define ARSCD1(A,N) FORq(i,1,N){SCD(A[i]);} #define PRINTD(n) printf("%d\n",n) #define PRINTLLD(n) printf("%lld\n",n) #define DEBUG printf("%s\n","debug") #define fst first #define snd second #define IN(x,S) (S.count(x) != 0) using namespace std; typedef pair<int,int> PII; typedef vector<int> VI; typedef long long ll; ////////////////////////////////////////////////////// int main(){ int N; SCD(N); int xLB,xRB; SCD2(xLB,xRB); int XL[200]; int YU[200]; int XR[200]; int YD[200]; bool hit[200]; FORq(i,1,N){ SCD2(XL[i],YU[i]); SCD2(XR[i],YD[i]); } FORq(i,xLB,xRB){ for(int h = 1280; h > -510 ; h--){ bool nhit = false; FORq(n,1,N){ if ((YD[n] == h) and (XL[n] <= i) and (i <= XR[n])){ nhit = true; hit[n] = true; break; } } if (nhit) break; } } FORq(i,1,N){ PRINTD(hit[i]); } return 0; }