結果

問題 No.2885 Range Triangle Collision Decision Queries
ユーザー Iroha_3856Iroha_3856
提出日時 2024-08-30 00:00:40
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,116 ms / 3,000 ms
コード長 1,671 bytes
コンパイル時間 3,705 ms
コンパイル使用メモリ 255,688 KB
実行使用メモリ 21,788 KB
最終ジャッジ日時 2024-09-07 19:41:57
合計ジャッジ時間 58,417 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 393 ms
6,816 KB
testcase_01 AC 402 ms
6,940 KB
testcase_02 AC 393 ms
6,944 KB
testcase_03 AC 392 ms
6,940 KB
testcase_04 AC 391 ms
6,940 KB
testcase_05 AC 772 ms
21,708 KB
testcase_06 AC 738 ms
21,560 KB
testcase_07 AC 781 ms
21,632 KB
testcase_08 AC 767 ms
21,588 KB
testcase_09 AC 778 ms
21,592 KB
testcase_10 AC 1,053 ms
21,696 KB
testcase_11 AC 1,038 ms
21,580 KB
testcase_12 AC 1,007 ms
21,648 KB
testcase_13 AC 1,009 ms
21,644 KB
testcase_14 AC 1,103 ms
21,756 KB
testcase_15 AC 945 ms
21,644 KB
testcase_16 AC 938 ms
21,620 KB
testcase_17 AC 750 ms
21,576 KB
testcase_18 AC 955 ms
21,644 KB
testcase_19 AC 943 ms
21,760 KB
testcase_20 AC 968 ms
21,612 KB
testcase_21 AC 945 ms
21,640 KB
testcase_22 AC 905 ms
21,576 KB
testcase_23 AC 920 ms
21,656 KB
testcase_24 AC 940 ms
21,696 KB
testcase_25 AC 898 ms
21,592 KB
testcase_26 AC 1,077 ms
21,652 KB
testcase_27 AC 1,039 ms
21,788 KB
testcase_28 AC 1,064 ms
21,592 KB
testcase_29 AC 1,064 ms
21,612 KB
testcase_30 AC 1,024 ms
21,692 KB
testcase_31 AC 1,009 ms
21,756 KB
testcase_32 AC 1,116 ms
21,596 KB
testcase_33 AC 1,059 ms
21,640 KB
testcase_34 AC 1,036 ms
21,656 KB
testcase_35 AC 1,048 ms
21,652 KB
testcase_36 AC 1,009 ms
21,592 KB
testcase_37 AC 1,065 ms
21,580 KB
testcase_38 AC 1,044 ms
21,620 KB
testcase_39 AC 1,002 ms
21,600 KB
testcase_40 AC 1,000 ms
21,576 KB
testcase_41 AC 997 ms
21,612 KB
testcase_42 AC 999 ms
21,616 KB
testcase_43 AC 906 ms
21,556 KB
testcase_44 AC 765 ms
21,588 KB
testcase_45 AC 913 ms
21,756 KB
testcase_46 AC 911 ms
21,724 KB
testcase_47 AC 966 ms
21,632 KB
testcase_48 AC 963 ms
21,612 KB
testcase_49 AC 346 ms
6,940 KB
testcase_50 AC 350 ms
6,940 KB
testcase_51 AC 355 ms
6,948 KB
testcase_52 AC 356 ms
6,944 KB
testcase_53 AC 2 ms
6,944 KB
testcase_54 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'std::pair<long long int, long long int> convert(ll, ll, ll, int)':
main.cpp:21:1: warning: control reaches end of non-void function [-Wreturn-type]
   21 | }
      | ^

ソースコード

diff #

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

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};
    }
}

const ll INF = 8e18;
ll opmin(ll a, ll b) {return min(a, b);}
ll emin() {return INF;}
ll opmax(ll a, ll b) {return max(a, b);}
ll emax() {return -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<ll> p(N), q(N);
        //投影する
        for (int i = 0; i < N; i++) {
        	auto[tp, tq] = convert(A[i], B[i], D[i], k);
        	p[i] = tp; q[i] = tq;
        } 
        segtree<ll, opmax, emax> pseg(p);
        segtree<ll, opmin, emin> qseg(q);
        for (int i = 0; i < Q; i++) {
        	ll resp = pseg.prod(L[i]-1, R[i]), resq = qseg.prod(L[i]-1, R[i]);
        	ll sp = p[S[i]-1], sq = q[S[i]-1];
            if (resp < sq and resq > sp) ; //ok
            else ans[i] = false; //ng
        }
    }
    for (int i = 0; i < Q; i++) {
        cout << (ans[i]? "Yes" : "No") << endl;
    }
}
0