結果

問題 No.2885 Range Triangle Collision Decision Queries
ユーザー Iroha_3856Iroha_3856
提出日時 2024-08-24 03:33:18
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,042 ms / 3,000 ms
コード長 1,563 bytes
コンパイル時間 3,209 ms
コンパイル使用メモリ 255,716 KB
実行使用メモリ 21,784 KB
最終ジャッジ日時 2024-09-07 19:40:02
合計ジャッジ時間 55,259 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 381 ms
6,812 KB
testcase_01 AC 381 ms
6,940 KB
testcase_02 AC 377 ms
6,940 KB
testcase_03 AC 375 ms
6,940 KB
testcase_04 AC 381 ms
6,944 KB
testcase_05 AC 662 ms
21,652 KB
testcase_06 AC 653 ms
21,784 KB
testcase_07 AC 655 ms
21,632 KB
testcase_08 AC 679 ms
21,744 KB
testcase_09 AC 675 ms
21,612 KB
testcase_10 AC 930 ms
21,652 KB
testcase_11 AC 936 ms
21,592 KB
testcase_12 AC 957 ms
21,752 KB
testcase_13 AC 937 ms
21,644 KB
testcase_14 AC 930 ms
21,600 KB
testcase_15 AC 838 ms
21,640 KB
testcase_16 AC 857 ms
21,776 KB
testcase_17 AC 729 ms
21,588 KB
testcase_18 AC 922 ms
21,648 KB
testcase_19 AC 865 ms
21,712 KB
testcase_20 AC 862 ms
21,584 KB
testcase_21 AC 831 ms
21,664 KB
testcase_22 AC 826 ms
21,576 KB
testcase_23 AC 847 ms
21,668 KB
testcase_24 AC 849 ms
21,580 KB
testcase_25 AC 837 ms
21,660 KB
testcase_26 AC 938 ms
21,576 KB
testcase_27 AC 920 ms
21,632 KB
testcase_28 AC 931 ms
21,612 KB
testcase_29 AC 951 ms
21,624 KB
testcase_30 AC 926 ms
21,648 KB
testcase_31 AC 1,042 ms
21,664 KB
testcase_32 AC 998 ms
21,588 KB
testcase_33 AC 953 ms
21,576 KB
testcase_34 AC 932 ms
21,720 KB
testcase_35 AC 1,031 ms
21,632 KB
testcase_36 AC 932 ms
21,568 KB
testcase_37 AC 950 ms
21,740 KB
testcase_38 AC 942 ms
21,636 KB
testcase_39 AC 1,035 ms
21,692 KB
testcase_40 AC 909 ms
21,632 KB
testcase_41 AC 922 ms
21,492 KB
testcase_42 AC 915 ms
21,592 KB
testcase_43 AC 837 ms
21,652 KB
testcase_44 AC 680 ms
21,608 KB
testcase_45 AC 837 ms
21,556 KB
testcase_46 AC 835 ms
21,624 KB
testcase_47 AC 891 ms
21,592 KB
testcase_48 AC 892 ms
21,740 KB
testcase_49 AC 347 ms
6,940 KB
testcase_50 AC 350 ms
6,940 KB
testcase_51 AC 353 ms
6,940 KB
testcase_52 AC 357 ms
6,940 KB
testcase_53 AC 2 ms
6,940 KB
testcase_54 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:32:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   32 | main() {
      | ^~~~
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};
}

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