結果
問題 | No.678 2Dシューティングゲームの必殺ビーム |
ユーザー | tetsu |
提出日時 | 2018-04-28 01:35:40 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 960 bytes |
コンパイル時間 | 1,881 ms |
コンパイル使用メモリ | 178,000 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-27 23:11:58 |
合計ジャッジ時間 | 2,562 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,944 KB |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | AC | 2 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define ll long long struct enem { int id; int xl; int yu; int xr; int yd; bool operator<( const enem& r) const { return yd < r.yd; } }; int main() { int n, xlb, xrb; cin >> n >> xlb >> xrb; vector<enem> es; int who[1281] = {}; for(int id=1; id<=n; id++) { int xl, yu, xr, yd; cin >> xl >> yu >> xr >> yd; enem e; e.id = id; e.xl = xl; e.yu = yu; e.xr = xr; e.yd = yd; es.push_back(e); } sort(es.begin(), es.end()); for(auto e : es) { int xl = e.xl; int xr = e.xr; for(int x=max(0, xl); x<=min(xr, 1280); x++) { who[x] = e.id; } } set<int> s; for(int x=xlb; x<=xrb; x++) { s.insert(who[x]); } for(int id=1; id<=n; id++) { if(s.find(id) != s.end()) { cout << 1 << endl; } else { cout << 0 << endl; } } // for (auto x: s) { // cout << x; // } // cout << endl; return 0; }