結果
問題 | No.678 2Dシューティングゲームの必殺ビーム |
ユーザー | pirozhki |
提出日時 | 2018-06-02 19:26:40 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,076 bytes |
コンパイル時間 | 858 ms |
コンパイル使用メモリ | 76,592 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-30 09:04:37 |
合計ジャッジ時間 | 1,680 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | WA | - |
testcase_07 | AC | 1 ms
6,948 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | WA | - |
ソースコード
#include <iostream> #include <fstream> #include <algorithm> #include <bitset> #include <vector> using namespace std; const int N = 1280; typedef bitset<N+1> Seq; struct Enemy { int i; int y; bool h; Seq s; }; Seq MakeSeq(int xl, int xr) { Seq s; for (int i = xl; i <= xr; i++) { s |= Seq(1) << i; } return s; } int main() { int n, xl, xr; cin >> n >> xl >> xr; Seq b = MakeSeq(xl, xr); vector<Enemy> es; for (int i = 0; i < n; i++) { int y, foo; cin >> xl >> foo >> xr >> y; xl = xl < 0 ? 0 : xl; xl = xl > N ? N : xl; xr = xr < 0 ? 0 : xr; xr = xr > N ? N : xr; y = y < 0 ? 0 : y; y = y > N ? N : y; Enemy e; e.i = i; e.y = y; e.h = false; e.s = MakeSeq(xl, xr); es.emplace_back(e); } sort(es.begin(), es.end(), [](const Enemy& a, const Enemy& b) { return a.y > b.y; }); for (Enemy& e : es) { if (e.s != (e.s & ~b)) { e.h = true; } b = ~e.s & b; } sort(es.begin(), es.end(), [](const Enemy& a, const Enemy& b) { return a.i < b.i; }); for (const Enemy& e : es) { cout << e.h << endl; } return 0; }