結果
問題 | No.678 2Dシューティングゲームの必殺ビーム |
ユーザー | Mister |
提出日時 | 2020-04-21 21:38:58 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,069 bytes |
コンパイル時間 | 1,034 ms |
コンパイル使用メモリ | 84,040 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-09 10:36:04 |
合計ジャッジ時間 | 1,948 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | AC | 2 ms
6,816 KB |
testcase_11 | AC | 2 ms
6,816 KB |
testcase_12 | AC | 2 ms
6,820 KB |
testcase_13 | AC | 2 ms
6,816 KB |
testcase_14 | AC | 2 ms
6,816 KB |
testcase_15 | AC | 2 ms
6,816 KB |
testcase_16 | AC | 2 ms
6,820 KB |
testcase_17 | AC | 2 ms
6,816 KB |
ソースコード
#include <iostream> #include <algorithm> #include <vector> struct Data { int lx, rx, y, id; Data(int lx, int rx, int y, int id) : lx(lx), rx(rx), y(y), id(id) {} }; constexpr int X = 1280; void solve() { int n, lbx, rbx; std::cin >> n >> lbx >> rbx; std::vector<bool> hit(X + 1, false); for (int x = lbx; x <= rbx; ++x) hit[x] = true; std::vector<Data> ps; for (int i = 0; i < n; ++i) { int lx, ly, rx, ry; std::cin >> lx >> ly >> rx >> ry; lx = std::max(lx, 0); rx = std::min(rx, X); ps.emplace_back(lx, rx, ry, i); } std::sort(ps.begin(), ps.end(), [](auto lhs, auto rhs) { return lhs.y > rhs.y; }); std::vector<bool> ans(n, false); for (auto p : ps) { for (int x = p.lx; x <= p.rx; ++x) { if (hit[x]) ans[p.id] = true; hit[x] = false; } } for (auto a : ans) std::cout << a << std::endl; } int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); solve(); return 0; }