結果
問題 | No.678 2Dシューティングゲームの必殺ビーム |
ユーザー | m-44 |
提出日時 | 2019-09-24 22:40:17 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 874 bytes |
コンパイル時間 | 1,523 ms |
コンパイル使用メモリ | 172,300 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-19 13:23:08 |
合計ジャッジ時間 | 2,190 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; struct enemy { int xl, yu, xr, yd; }; int main() { int n, xlb, xrb; cin>>n>>xlb>>xrb; enemy es[n]; pair<int, int> yds[n]; for (int i=0; i<n; i++) { int xl, yu, xr, yd; cin>>xl>>yu>>xr>>yd; es[i] = {xl, yu, xr, yd}; yds[i] = {yd, i}; } sort(yds, yds + n); reverse(yds, yds + n); int beam[1281]; for (int i=0; i<1281; i++) { if (i >= xlb && i<= xrb) { beam[i] = 1; } else { beam[i] = 0; } } int ans[n]; for (int i=0; i<n; i++) ans[i] = 0; for (auto yd: yds) { enemy e = es[yd.second]; for (int i=max(e.xl, 0); i<=min(e.xr, 1280); i++) { if (beam[i] == 1) { ans[yd.second] = 1; for (int j=i; j<=min(e.xr, 1280); j++) { beam[j] = 0; } break; } } } for (int i: ans) { cout<<i<<endl; } }