結果

問題 No.2885 Range Triangle Collision Decision Queries
ユーザー karinohitokarinohito
提出日時 2024-09-08 14:54:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,236 ms / 3,000 ms
コード長 1,378 bytes
コンパイル時間 2,527 ms
コンパイル使用メモリ 208,888 KB
実行使用メモリ 32,620 KB
最終ジャッジ日時 2024-09-08 14:55:49
合計ジャッジ時間 64,488 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 429 ms
6,812 KB
testcase_01 AC 419 ms
6,944 KB
testcase_02 AC 426 ms
6,940 KB
testcase_03 AC 416 ms
6,944 KB
testcase_04 AC 434 ms
6,940 KB
testcase_05 AC 888 ms
32,576 KB
testcase_06 AC 905 ms
32,536 KB
testcase_07 AC 897 ms
32,468 KB
testcase_08 AC 901 ms
32,460 KB
testcase_09 AC 920 ms
32,440 KB
testcase_10 AC 1,210 ms
32,500 KB
testcase_11 AC 1,213 ms
32,480 KB
testcase_12 AC 1,236 ms
32,520 KB
testcase_13 AC 1,198 ms
32,620 KB
testcase_14 AC 1,220 ms
32,544 KB
testcase_15 AC 1,117 ms
32,600 KB
testcase_16 AC 1,065 ms
32,548 KB
testcase_17 AC 845 ms
32,456 KB
testcase_18 AC 1,067 ms
32,620 KB
testcase_19 AC 1,078 ms
32,496 KB
testcase_20 AC 1,115 ms
32,500 KB
testcase_21 AC 1,107 ms
32,488 KB
testcase_22 AC 1,026 ms
32,564 KB
testcase_23 AC 1,081 ms
32,480 KB
testcase_24 AC 1,107 ms
32,484 KB
testcase_25 AC 972 ms
32,472 KB
testcase_26 AC 1,222 ms
32,504 KB
testcase_27 AC 1,195 ms
32,460 KB
testcase_28 AC 1,160 ms
32,544 KB
testcase_29 AC 1,192 ms
32,480 KB
testcase_30 AC 1,172 ms
32,504 KB
testcase_31 AC 1,206 ms
32,460 KB
testcase_32 AC 1,233 ms
32,560 KB
testcase_33 AC 1,161 ms
32,580 KB
testcase_34 AC 1,196 ms
32,548 KB
testcase_35 AC 1,152 ms
32,460 KB
testcase_36 AC 1,185 ms
32,592 KB
testcase_37 AC 1,180 ms
32,472 KB
testcase_38 AC 1,178 ms
32,584 KB
testcase_39 AC 1,195 ms
32,464 KB
testcase_40 AC 1,189 ms
32,592 KB
testcase_41 AC 1,192 ms
32,564 KB
testcase_42 AC 1,161 ms
32,464 KB
testcase_43 AC 1,076 ms
32,456 KB
testcase_44 AC 918 ms
32,584 KB
testcase_45 AC 1,120 ms
32,460 KB
testcase_46 AC 1,115 ms
32,492 KB
testcase_47 AC 1,160 ms
32,500 KB
testcase_48 AC 1,113 ms
32,592 KB
testcase_49 AC 353 ms
5,376 KB
testcase_50 AC 379 ms
6,944 KB
testcase_51 AC 363 ms
6,940 KB
testcase_52 AC 365 ms
6,940 KB
testcase_53 AC 2 ms
6,944 KB
testcase_54 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include<atcoder/segtree>
using namespace atcoder;
using ll=long long;
ll opmax(ll a,ll b){return max(a,b);}
ll emax(){return -1e18;}

ll opmin(ll a,ll b){return min(a,b);}
ll emin(){return 1e18;}

int main() {
    
    ll N;
    cin>>N;
    segtree<ll,opmax,emax> segH(N),segL(N),segR(N);
    segtree<ll,opmin,emin> segl(N),segr(N),segh(N);
    vector<ll> A(N),B(N),D(N);
    for(int i=0;i<N;i++){
        cin>>A[i]>>B[i]>>D[i];
        segH.set(i,B[i]-D[i]);
        segl.set(i,B[i]-A[i]);
        segr.set(i,B[i]+A[i]);

        segh.set(i,B[i]);
        segL.set(i,B[i]-A[i]-2*D[i]);
        segR.set(i,B[i]+A[i]-2*D[i]);
    }
    ll Q;
    cin>>Q;
    for(int q=0;q<Q;q++){
        ll S,Lq,Rq;
        cin>>S>>Lq>>Rq;
        S--;Lq--;
        ll h=segh.prod(Lq,Rq);
        ll l=segl.prod(Lq,Rq);
        ll r=segr.prod(Lq,Rq);

        ll H=segH.prod(Lq,Rq);
        ll L=segL.prod(Lq,Rq);
        ll R=segR.prod(Lq,Rq);
        // cout<<h<<" "<<H<<" "<<l<<" "<<L<<" "<<r<<" "<<R<<endl;
        // cout<<B[S]<<" "<<B[S]-D[S]<<" "<<B[S]-A[S]<<" "<<B[S]-A[S]-2*D[S]<<" "<<B[S]+A[S]<<" "<<B[S]+A[S]-2*D[S]<<endl;
        
        bool OK=1;
        if(h<=B[S]-D[S]||H>=B[S])OK=0;
        if(l<=B[S]-A[S]-2*D[S]||L>=B[S]-A[S])OK=0;
        if(r<=B[S]+A[S]-2*D[S]||R>=B[S]+A[S])OK=0;
        cout<<(OK?"Yes":"No")<<endl;
    }
}
0