結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 WA -
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 46 ms
7,424 KB
testcase_11 AC 157 ms
17,744 KB
testcase_12 AC 9 ms
6,944 KB
testcase_13 AC 144 ms
17,092 KB
testcase_14 AC 145 ms
15,676 KB
testcase_15 AC 43 ms
7,424 KB
testcase_16 AC 59 ms
9,472 KB
testcase_17 AC 58 ms
9,344 KB
testcase_18 AC 7 ms
6,944 KB
testcase_19 AC 90 ms
11,392 KB
testcase_20 AC 182 ms
19,016 KB
testcase_21 AC 183 ms
18,908 KB
testcase_22 AC 179 ms
18,920 KB
testcase_23 AC 175 ms
18,988 KB
testcase_24 AC 202 ms
18,960 KB
testcase_25 AC 176 ms
18,904 KB
testcase_26 AC 186 ms
18,900 KB
testcase_27 AC 185 ms
18,908 KB
testcase_28 AC 179 ms
19,068 KB
testcase_29 AC 181 ms
18,992 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());
    for(long &y:ys)y=lower_bound(B.begin(),B.end(),y)-B.begin();
    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)continue;
        seg.set(y,max(0L,seg.prod(0,y+1))+C[i]);
    }
    cout<<seg.all_prod()<<endl;
}
0