結果

問題 No.2885 Range Triangle Collision Decision Queries
ユーザー sortA0329sortA0329
提出日時 2024-09-07 20:16:32
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 512 ms / 3,000 ms
コード長 1,135 bytes
コンパイル時間 6,433 ms
コンパイル使用メモリ 337,500 KB
実行使用メモリ 29,540 KB
最終ジャッジ日時 2024-09-07 20:17:05
合計ジャッジ時間 31,836 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
6,812 KB
testcase_01 AC 57 ms
6,944 KB
testcase_02 AC 57 ms
6,940 KB
testcase_03 AC 57 ms
6,944 KB
testcase_04 AC 58 ms
6,940 KB
testcase_05 AC 304 ms
29,348 KB
testcase_06 AC 287 ms
29,412 KB
testcase_07 AC 294 ms
29,412 KB
testcase_08 AC 263 ms
29,476 KB
testcase_09 AC 261 ms
29,540 KB
testcase_10 AC 296 ms
29,436 KB
testcase_11 AC 322 ms
29,540 KB
testcase_12 AC 300 ms
29,524 KB
testcase_13 AC 295 ms
29,540 KB
testcase_14 AC 299 ms
29,512 KB
testcase_15 AC 463 ms
29,480 KB
testcase_16 AC 447 ms
29,496 KB
testcase_17 AC 291 ms
29,536 KB
testcase_18 AC 358 ms
29,540 KB
testcase_19 AC 347 ms
29,376 KB
testcase_20 AC 350 ms
29,412 KB
testcase_21 AC 392 ms
29,480 KB
testcase_22 AC 242 ms
29,364 KB
testcase_23 AC 257 ms
29,432 KB
testcase_24 AC 259 ms
29,416 KB
testcase_25 AC 245 ms
29,524 KB
testcase_26 AC 481 ms
29,536 KB
testcase_27 AC 479 ms
29,528 KB
testcase_28 AC 466 ms
29,500 KB
testcase_29 AC 471 ms
29,540 KB
testcase_30 AC 500 ms
29,412 KB
testcase_31 AC 472 ms
29,412 KB
testcase_32 AC 482 ms
29,412 KB
testcase_33 AC 481 ms
29,412 KB
testcase_34 AC 482 ms
29,500 KB
testcase_35 AC 485 ms
29,520 KB
testcase_36 AC 482 ms
29,512 KB
testcase_37 AC 500 ms
29,364 KB
testcase_38 AC 468 ms
29,428 KB
testcase_39 AC 479 ms
29,416 KB
testcase_40 AC 464 ms
29,360 KB
testcase_41 AC 481 ms
29,412 KB
testcase_42 AC 512 ms
29,536 KB
testcase_43 AC 247 ms
29,416 KB
testcase_44 AC 205 ms
29,372 KB
testcase_45 AC 294 ms
29,332 KB
testcase_46 AC 266 ms
29,408 KB
testcase_47 AC 283 ms
29,364 KB
testcase_48 AC 280 ms
29,536 KB
testcase_49 AC 47 ms
5,376 KB
testcase_50 AC 47 ms
5,376 KB
testcase_51 AC 47 ms
5,376 KB
testcase_52 AC 45 ms
5,376 KB
testcase_53 AC 2 ms
5,376 KB
testcase_54 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
int main() {
    cin.tie(0)->sync_with_stdio(0);
    int N;
    cin >> N;
    segtree<long long, [](long long a, long long b) { return max(a, b); }, []() { return std::numeric_limits<long long>::min(); }> axl1(N), axl2(N), axl3(N);
    segtree<long long, [](long long a, long long b) { return min(a, b); }, []() { return std::numeric_limits<long long>::max(); }> axr1(N), axr2(N), axr3(N);
    for (int i = 0; i != N; ++i) {
        long long A, B, D;
        cin >> A >> B >> D;
        axl1.set(i, B - D);
        axr1.set(i, B);
        axl2.set(i, (A - D) + (B - D));
        axr2.set(i, A + B);
        axl3.set(i, A - B);
        axr3.set(i, (A + D) - (B - D));
    }
    int Q;
    cin >> Q;
    for (int i = 0; i != Q; ++i) {
        int S, L, R;
        cin >> S >> L >> R;
        --S, --L;
        cout << (axl1.get(S) < axr1.prod(L, R) && axl1.prod(L, R) < axr1.get(S) && axl2.get(S) < axr2.prod(L, R) && axl2.prod(L, R) < axr2.get(S) && axl3.get(S) < axr3.prod(L, R) && axl3.prod(L, R) < axr3.get(S) ? "Yes\n" : "No\n");
    }
}
0