結果
問題 | No.2687 所により大雨 |
ユーザー | 👑 tute7627 |
提出日時 | 2024-03-13 01:46:58 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,759 bytes |
コンパイル時間 | 2,125 ms |
コンパイル使用メモリ | 211,736 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-09-30 06:00:03 |
合計ジャッジ時間 | 9,079 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 365 ms
6,816 KB |
testcase_01 | AC | 364 ms
6,820 KB |
testcase_02 | AC | 365 ms
6,816 KB |
testcase_03 | AC | 365 ms
6,820 KB |
testcase_04 | AC | 366 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 1 ms
6,816 KB |
testcase_07 | WA | - |
testcase_08 | AC | 1 ms
6,820 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 2 ms
6,820 KB |
testcase_21 | AC | 1 ms
6,816 KB |
testcase_22 | AC | 1 ms
6,820 KB |
testcase_23 | AC | 1 ms
6,820 KB |
testcase_24 | AC | 2 ms
6,816 KB |
testcase_25 | AC | 2 ms
6,820 KB |
testcase_26 | AC | 2 ms
6,816 KB |
testcase_27 | AC | 2 ms
6,816 KB |
testcase_28 | AC | 2 ms
6,820 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; #ifdef LOCAL #include <debug_print.hpp> #define OUT(...) debug_print::multi_print(#__VA_ARGS__, __VA_ARGS__) #else #define OUT(...) (static_cast<void>(0)) #endif int main(){ int N, M; cin >> N >> M; assert(1 <= N && N <= 1e5); assert(1 <= M && M <= 1000); using ll = int; vector<pair<ll, ll>> p(N), q(M); for(int i = 0; i < N; i++){ cin >> p[i].first >> p[i].second; assert(-1e9 <= p[i].first && p[i].first <= p[i].second && p[i].second <= 1e9); p[i].first *= 2; p[i].second *= 2; } for(int i = 0; i < M; i++){ cin >> q[i].first >> q[i].second; assert(-1e9 <= q[i].first && q[i].first <= q[i].second && q[i].second <= 1e9); q[i].first *= 2; q[i].second *= 2; } int K; cin >> K; assert(1 <= K && K <= 1000); vector<int> P(K); for(int i = 0; i < K; i++){ cin >> P[i]; assert(-1e9 <= P[i] && P[i] <= 1e9); P[i] *= 2; } for(int i = 0; i < K - 1; i++){ assert(P[i] < P[i + 1]); } bool all = false; sort(p.begin(), p.end()); for(int i = 0; i < N - 1; i++){ if(p[i].second >= p[i + 1].first){ all = true; } } sort(q.begin(), q.end()); for(int i = 0; i < M - 1; i++){ if(q[i].second >= q[i + 1].first){ all = true; } } vector<bool> ans(K, all); for(int i = 0; i < N; i++){ int idx = 0; for(int j = 0; j < M; j++){ ll mid = (p[i].second + q[j].first) / 2; ll l = mid - (p[i].second - p[i].first) / 2; ll r = mid + (q[j].second - q[j].first) / 2; while(idx < K && P[idx] <= r){ if(P[idx] >= l){ ans[idx] = true; } idx++; } } } for(int i = 0; i < K; i++){ cout << ans[i] << (i == K - 1 ? '\n' : ' '); } }