結果

問題 No.1625 三角形の質問
ユーザー momoyuumomoyuu
提出日時 2024-08-11 02:27:13
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 3,405 bytes
コンパイル時間 2,269 ms
コンパイル使用メモリ 145,312 KB
実行使用メモリ 44,552 KB
最終ジャッジ日時 2024-08-11 02:28:34
合計ジャッジ時間 75,432 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 56 ms
6,944 KB
testcase_02 AC 1,269 ms
17,480 KB
testcase_03 AC 395 ms
21,672 KB
testcase_04 AC 699 ms
14,752 KB
testcase_05 AC 1,974 ms
25,504 KB
testcase_06 AC 5,995 ms
43,356 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 5,985 ms
43,156 KB
testcase_10 AC 5,868 ms
42,368 KB
testcase_11 AC 5,975 ms
44,552 KB
testcase_12 AC 5,937 ms
42,832 KB
testcase_13 AC 5,908 ms
43,484 KB
testcase_14 AC 5,845 ms
43,312 KB
testcase_15 AC 5,860 ms
42,864 KB
testcase_16 AC 1,176 ms
19,976 KB
testcase_17 AC 1,791 ms
43,900 KB
testcase_18 AC 1,638 ms
26,028 KB
testcase_19 AC 2,469 ms
42,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>

using namespace std;
using ll = long long;

#include<atcoder/segtree>
ll op(ll a,ll b){
    return max(a,b);
}
ll ee(){
    return -1;
}


int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    const int B = 1600;
    int n,q;
    cin>>n>>q;
    vector<ll> a(n),b(n),c(n),d(n),e(n),f(n);
    for(int i = 0;i<n;i++) cin>>a[i]>>b[i]>>c[i]>>d[i]>>e[i]>>f[i];

    auto calc = [&](int i) {
        ll nx = c[i] - a[i];
        ll ny = d[i] - b[i];
        ll nnx = e[i] - a[i];
        ll nny = f[i] - b[i];
        return abs(nx*nny-ny*nnx);
    };

    vector<ll> t(q),l(q),r(q),na(q),nb(q),nc(q),nd(q),ne(q),nf(q);
    for(int i = 0;i<q;i++){
        cin>>t[i];
        if(t[i]==1) cin>>na[i]>>nb[i]>>nc[i]>>nd[i]>>ne[i]>>nf[i];
        else cin>>l[i]>>r[i];
    }

    vector<ll> ans(q,-1);
    int cnt = (q+B-1) / B;


    auto c1 = [&](vector<int> idx) {
        vector<ll> dx;
        for(int i = 0;i<n;i++){
            ll le = min(min(a[i],c[i]),e[i]);
            ll ri = max(max(a[i],c[i]),e[i]);
            dx.push_back(ri);
            dx.push_back(le);
        }
        for(auto&i:idx) dx.push_back(r[i]);
        for(auto&i:idx) dx.push_back(l[i]);
        sort(dx.begin(),dx.end());
        dx.erase(unique(dx.begin(),dx.end()),dx.end());
        int m = dx.size();
        atcoder::segtree<ll,op,ee> seg(m);
        vector<pair<pair<ll,ll>,pair<ll,ll>>> use;
        for(int i = 0;i<n;i++){
            ll le = min(min(a[i],c[i]),e[i]);
            ll ri = max(max(a[i],c[i]),e[i]);
            int ni = lower_bound(dx.begin(),dx.end(),ri) - dx.begin();
            ll now = calc(i);
            int nj = lower_bound(dx.begin(),dx.end(),le) - dx.begin();
            use.push_back({{ni,0},{nj,now}});
        }
        for(int i:idx){
            int ni = lower_bound(dx.begin(),dx.end(),r[i]) - dx.begin();
            int nj = lower_bound(dx.begin(),dx.end(),l[i]) - dx.begin();
            use.push_back({{ni,1},{i,nj}});
        }
        sort(use.begin(),use.end());
        for(auto&itr:use) {
            int t = itr.first.second;
            if(t==0){
                seg.set(itr.second.first,op(seg.get(itr.second.first),itr.second.second));
            }else{
                ans[itr.second.first] = max(ans[itr.second.first],seg.prod(itr.second.second,m));
            }
        }
    };

    for(int i = 0;i<cnt;i++){
        int le = i * B;
        int ri = (i+1) * B - 1;
        ri = min(ri,q-1);
        vector<int> idx;
        for(int j = le;j<=ri;j++) {
            if(t[j]==2) idx.push_back(j);
        }
        for(int j = le;j<=ri;j++) if(t[j]==2){
            for(int k = le;k<=j;k++) if(t[k]==1){
                if(!(l[j]<=min(min(na[k],nc[k]),ne[k])&&max(max(na[k],nc[k]),ne[k])<=r[j])) continue;
                ll nx = nc[k] - na[k];
                ll ny = nd[k] - nb[k];
                ll nnx = ne[k] - na[k];
                ll nny = nf[k] - nb[k];
                ans[j] = max(ans[j],abs(nx*nny-ny*nnx));
            }
        }
        c1(idx);
        for(int j = le;j<=ri;j++) if(t[j]==1){
            a.push_back(na[j]);;
            b.push_back(nb[j]);
            c.push_back(nc[j]);
            d.push_back(nd[j]);
            e.push_back(ne[j]);
            f.push_back(nf[j]);
            n++;
        }
    }

    for(int i = 0;i<q;i++) if(t[i]==2) cout<<ans[i]<<endl;
}

0