結果

問題 No.2859 Falling Balls
ユーザー nononnonon
提出日時 2024-08-26 13:59:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 188 ms / 3,000 ms
コード長 1,035 bytes
コンパイル時間 2,983 ms
コンパイル使用メモリ 217,080 KB
実行使用メモリ 19,076 KB
最終ジャッジ日時 2024-08-26 13:59:32
合計ジャッジ時間 7,456 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 46 ms
7,424 KB
testcase_11 AC 165 ms
17,780 KB
testcase_12 AC 9 ms
6,940 KB
testcase_13 AC 154 ms
17,008 KB
testcase_14 AC 127 ms
15,852 KB
testcase_15 AC 45 ms
7,296 KB
testcase_16 AC 60 ms
9,600 KB
testcase_17 AC 59 ms
9,344 KB
testcase_18 AC 7 ms
6,940 KB
testcase_19 AC 91 ms
11,392 KB
testcase_20 AC 180 ms
18,964 KB
testcase_21 AC 177 ms
19,040 KB
testcase_22 AC 178 ms
19,068 KB
testcase_23 AC 188 ms
18,980 KB
testcase_24 AC 175 ms
19,048 KB
testcase_25 AC 179 ms
18,920 KB
testcase_26 AC 181 ms
19,016 KB
testcase_27 AC 184 ms
19,076 KB
testcase_28 AC 175 ms
19,008 KB
testcase_29 AC 179 ms
19,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/segtree>
using namespace std;
long op(long a, long b){return max(a,b);}
long e(){return -1L<<60;}

int main()
{
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int N,K;
    cin>>N>>K;
    vector<long>T(N),X(N),C(N);
    for(long &t:T)cin>>t,t*=K;
    for(long &x:X)cin>>x;
    for(long &c:C)cin>>c;
    vector<long>xs(N),ys(N);
    for(int i=0;i<N;i++)
    {
        xs[i]=T[i]-X[i];
        ys[i]=T[i]+X[i];
    }
    vector<int>ord(N);
    iota(ord.begin(),ord.end(),0);
    sort(ord.begin(),ord.end(),[&](int i, int j)
    {
        return make_pair(xs[i],ys[i])<make_pair(xs[j],ys[j]);
    });
    auto B=ys;
    sort(B.begin(),B.end());
    B.erase(unique(B.begin(),B.end()),B.end());
    atcoder::segtree<long,op,e>seg(B.size()+1);
    seg.set(0,0);
    for(int i:ord)
    {
        long x=xs[i],y=ys[i];
        if(x<0||y<0)continue;
        y=lower_bound(B.begin(),B.end(),y)-B.begin();
        seg.set(y,max(0L,seg.prod(0,y+1))+C[i]);
    }
    cout<<seg.all_prod()<<endl;
}
0