結果

問題 No.2885 Range Triangle Collision Decision Queries
ユーザー sortA0329sortA0329
提出日時 2024-09-07 20:04:40
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,135 bytes
コンパイル時間 6,780 ms
コンパイル使用メモリ 337,096 KB
実行使用メモリ 29,680 KB
最終ジャッジ日時 2024-09-07 20:05:11
合計ジャッジ時間 30,671 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 290 ms
29,364 KB
testcase_11 AC 299 ms
29,460 KB
testcase_12 AC 290 ms
29,428 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 474 ms
29,428 KB
testcase_16 AC 472 ms
29,360 KB
testcase_17 AC 317 ms
29,408 KB
testcase_18 AC 358 ms
29,404 KB
testcase_19 AC 364 ms
29,424 KB
testcase_20 AC 363 ms
29,580 KB
testcase_21 AC 381 ms
29,404 KB
testcase_22 AC 246 ms
29,464 KB
testcase_23 AC 262 ms
29,524 KB
testcase_24 AC 261 ms
29,432 KB
testcase_25 AC 248 ms
29,580 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 502 ms
29,372 KB
testcase_41 AC 495 ms
29,352 KB
testcase_42 AC 493 ms
29,344 KB
testcase_43 AC 275 ms
29,348 KB
testcase_44 AC 207 ms
29,340 KB
testcase_45 AC 270 ms
29,368 KB
testcase_46 AC 270 ms
29,356 KB
testcase_47 AC 283 ms
29,360 KB
testcase_48 AC 281 ms
29,428 KB
testcase_49 AC 47 ms
6,940 KB
testcase_50 WA -
testcase_51 AC 45 ms
6,944 KB
testcase_52 WA -
testcase_53 AC 2 ms
6,940 KB
testcase_54 AC 2 ms
6,940 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);
        axr1.set(i, B + D);
        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