結果
問題 | No.678 2Dシューティングゲームの必殺ビーム |
ユーザー | tetsu |
提出日時 | 2018-04-28 01:11:50 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 959 bytes |
コンパイル時間 | 1,746 ms |
コンパイル使用メモリ | 177,524 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-27 23:10:12 |
合計ジャッジ時間 | 2,383 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 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 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 3 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | WA | - |
ソースコード
#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=0; x<=1280; 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; }