結果

問題 No.2885 Range Triangle Collision Decision Queries
ユーザー Iroha_3856Iroha_3856
提出日時 2024-09-07 14:46:23
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 940 ms / 3,000 ms
コード長 1,567 bytes
コンパイル時間 4,758 ms
コンパイル使用メモリ 256,184 KB
実行使用メモリ 21,784 KB
最終ジャッジ日時 2024-09-07 19:40:02
合計ジャッジ時間 53,393 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 376 ms
6,816 KB
testcase_01 AC 373 ms
6,940 KB
testcase_02 AC 372 ms
6,944 KB
testcase_03 AC 373 ms
6,940 KB
testcase_04 AC 373 ms
6,944 KB
testcase_05 AC 657 ms
21,736 KB
testcase_06 AC 653 ms
21,628 KB
testcase_07 AC 665 ms
21,784 KB
testcase_08 AC 656 ms
21,692 KB
testcase_09 AC 657 ms
21,600 KB
testcase_10 AC 919 ms
21,756 KB
testcase_11 AC 916 ms
21,604 KB
testcase_12 AC 923 ms
21,756 KB
testcase_13 AC 916 ms
21,596 KB
testcase_14 AC 931 ms
21,608 KB
testcase_15 AC 820 ms
21,632 KB
testcase_16 AC 816 ms
21,684 KB
testcase_17 AC 713 ms
21,648 KB
testcase_18 AC 844 ms
21,644 KB
testcase_19 AC 844 ms
21,720 KB
testcase_20 AC 853 ms
21,764 KB
testcase_21 AC 827 ms
21,664 KB
testcase_22 AC 807 ms
21,644 KB
testcase_23 AC 830 ms
21,720 KB
testcase_24 AC 830 ms
21,632 KB
testcase_25 AC 792 ms
21,672 KB
testcase_26 AC 923 ms
21,604 KB
testcase_27 AC 921 ms
21,584 KB
testcase_28 AC 918 ms
21,664 KB
testcase_29 AC 915 ms
21,772 KB
testcase_30 AC 916 ms
21,784 KB
testcase_31 AC 928 ms
21,744 KB
testcase_32 AC 922 ms
21,652 KB
testcase_33 AC 911 ms
21,660 KB
testcase_34 AC 906 ms
21,580 KB
testcase_35 AC 920 ms
21,604 KB
testcase_36 AC 904 ms
21,604 KB
testcase_37 AC 924 ms
21,668 KB
testcase_38 AC 909 ms
21,636 KB
testcase_39 AC 913 ms
21,652 KB
testcase_40 AC 921 ms
21,628 KB
testcase_41 AC 940 ms
21,768 KB
testcase_42 AC 907 ms
21,668 KB
testcase_43 AC 847 ms
21,640 KB
testcase_44 AC 681 ms
21,732 KB
testcase_45 AC 832 ms
21,676 KB
testcase_46 AC 853 ms
21,616 KB
testcase_47 AC 883 ms
21,636 KB
testcase_48 AC 900 ms
21,544 KB
testcase_49 AC 340 ms
6,944 KB
testcase_50 AC 352 ms
6,940 KB
testcase_51 AC 355 ms
6,940 KB
testcase_52 AC 354 ms
6,944 KB
testcase_53 AC 2 ms
6,940 KB
testcase_54 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'std::pair<long long int, long long int> convert(ll, ll, ll, int)':
main.cpp:20:1: warning: control reaches end of non-void function [-Wreturn-type]
   20 | }
      | ^

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/segtree>

using ll = long long;

pair<ll, ll> convert(ll a, ll b, ll d, int type) {
    if (type == 0) {
        //__が分離直線, |が分離軸
        return {b-d, b};
    }
    if (type == 1) {
        // /が分離直線, \が分離軸
        return {a-b, a-b+2*d};
    }
    if (type == 2) {
        // \が分離直線, /が分離軸
        return {a+b-2*d, a+b};
    }
}

//{l, r} に対して、{lmax, rmin} を返す
pair<ll, ll> op(pair<ll, ll> a, pair<ll, ll> b) {
    return {max(a.first, b.first), min(a.second, b.second)};
}

pair<ll, ll> e() {
    const ll INF = 4e18;
    return {-INF, INF};
}

int main() {
    //入力
    int N; cin >> N;
    vector<ll> A(N), B(N), D(N);
    for (int i = 0; i < N; i++) {
        cin >> A[i] >> B[i] >> D[i];
    }
    int Q; cin >> Q;
    vector<int> S(Q), L(Q), R(Q);
    for (int i = 0; i < Q; i++) {
        cin >> S[i] >> L[i] >> R[i];
    }
    //答え
    vector<bool> ans(Q, true);
    for (int k = 0; k < 3; k++) {
        vector<pair<ll, ll>> pq(N);
        for (int i = 0; i < N; i++) {
            pq[i] = convert(A[i], B[i], D[i], k);
        } 
        atcoder::segtree<pair<ll, ll>, op, e> seg(pq);
        for (int i = 0; i < Q; i++) {
            auto[resp, resq] = seg.prod(L[i]-1, R[i]);
            auto[sp, sq] = pq[S[i]-1];
            if (resp < sq && resq > sp) ; //ok
            else ans[i] = false; //ng
        }
    }
    for (int i = 0; i < Q; i++) {
        cout << (ans[i]? "Yes" : "No") << endl;
    }
}
0