結果

問題 No.2757 Pin Game
ユーザー yumekawayuiyumekawayui
提出日時 2024-05-17 21:24:35
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 1,149 bytes
コンパイル時間 1,894 ms
コンパイル使用メモリ 164,604 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-17 21:24:38
合計ジャッジ時間 2,649 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const vector<int> dx = {0, 0, 1, -1};
const vector<int> dy = {1, -1, 0, 0};
#define vec vector
#define int long long
#define double long double
//cout<<setprecision(15)<<fixed<<..
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define req(i, x, n) for (int i = x; i < (int)(n); i++)
#define pii pair<int,int>
#define pq priority_queue
#define all(V) begin(V),end(V)
#define printpair(p) cout<<p.first<<" "<<p.second<<"\n"
#define tple tuple<int,int,int>
template<class T, class U> inline bool chmax(T &a, const U &b) { if (a < b) { a = b; return true; } return false; }
template<class T, class U> inline bool chmin(T &a, const U &b) { if (a > b) { a = b; return true; } return false; }
#define nexper(Z) next_permutation(all(Z))
#define pb push_back
#define rex(i, n) for (int i = 1; i <= (int)(n); i++)

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

    int n,k;cin>>n>>k;
    vec<int> A(n);
    rep(i,n){
        cin>>A[i];
    }
    int ans=n;
    rep(i,n-1){
        if(abs(A[i+1]-A[i])<k){
            A[i+1]=A[i];
            ans--;
        }
    }
    cout<<ans;

}
0