結果

問題 No.2757 Pin Game
ユーザー nononnonon
提出日時 2024-05-18 06:24:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 459 bytes
コンパイル時間 2,210 ms
コンパイル使用メモリ 204,800 KB
実行使用メモリ 9,584 KB
最終ジャッジ日時 2024-05-18 06:24:32
合計ジャッジ時間 3,279 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 66 ms
9,540 KB
testcase_05 AC 82 ms
9,584 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 28 ms
6,940 KB
testcase_11 AC 27 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/segtree>
using namespace std;
int N,K,X[3<<17];
int op(int a, int b){return max(a,b);}
int e(){return 0;}
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cin>>N>>K;
    for(int i=0;i<N;i++)cin>>X[i];
    atcoder::segtree<int,op,e>seg(N);
    int r=0;
    for(int i=0;i<N;i++)
    {
        while(r<i&&X[r]+K<=X[i])r++;
        seg.set(i,seg.prod(0,r)+1);
    }
    cout<<seg.all_prod()<<endl;
}
0