結果

問題 No.2757 Pin Game
コンテスト
ユーザー rniya
提出日時 2024-05-17 21:44:50
言語 C++17(gcc12)
(gcc 12.4.0 + boost 1.90.0)
コンパイル:
g++-12 -O2 -lm -std=c++17 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
CE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,442 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 1,740 ms
コンパイル使用メモリ 193,092 KB
最終ジャッジ日時 2026-07-04 18:15:31
合計ジャッジ時間 2,369 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge1_0
このコードへのチャレンジ
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。

コンパイルメッセージ
main.cpp: In function ‘std::ostream& operator<<(std::ostream&, const std::vector<_Tp>&)’:
main.cpp:16:37: warning: range-based ‘for’ loops with initializer only available with ‘-std=c++20’ or ‘-std=gnu++20’ [-Wc++20-extensions]
   16 |     for (std::string_view sep = ""; const auto& e : v) {
      |                                     ^~~~~
main.cpp: In function ‘void mkuni(std::vector<_Tp>&)’:
main.cpp:31:10: error: ‘std::ranges’ has not been declared
   31 |     std::ranges::sort(v);
      |          ^~~~~~
main.cpp:32:24: error: ‘std::ranges’ has not been declared
   32 |     auto result = std::ranges::unique(v);
      |                        ^~~~~~
main.cpp: In function ‘int lwb(const std::vector<_Tp>&, const T&)’:
main.cpp:37:42: error: ‘std::ranges’ has not been declared
   37 |     return std::distance(v.begin(), std::ranges::lower_bound(v, x));
      |                                          ^~~~~~

ソースコード

diff #
raw source code

#include <bits/stdc++.h>
#ifdef LOCAL
#include <debug.hpp>
#else
#define debug(...) void(0)
#endif

template <class T> std::istream& operator>>(std::istream& is, std::vector<T>& v) {
    for (auto& e : v) {
        is >> e;
    }
    return is;
}

template <class T> std::ostream& operator<<(std::ostream& os, const std::vector<T>& v) {
    for (std::string_view sep = ""; const auto& e : v) {
        os << std::exchange(sep, " ") << e;
    }
    return os;
}

template <class T, class U = T> bool chmin(T& x, U&& y) {
    return y < x and (x = std::forward<U>(y), true);
}

template <class T, class U = T> bool chmax(T& x, U&& y) {
    return x < y and (x = std::forward<U>(y), true);
}

template <class T> void mkuni(std::vector<T>& v) {
    std::ranges::sort(v);
    auto result = std::ranges::unique(v);
    v.erase(result.begin(), result.end());
}

template <class T> int lwb(const std::vector<T>& v, const T& x) {
    return std::distance(v.begin(), std::ranges::lower_bound(v, x));
}

using ll = long long;

using namespace std;

constexpr int INF = (1 << 30) - 1;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cout << fixed << setprecision(15);
    int N, K;
    cin >> N >> K;
    vector<int> X(N);
    cin >> X;
    int pre = -INF, ans = 0;
    for (int& x : X) {
        if (x - pre >= K or pre == -INF) {
            ans++;
            pre = x;
        }
    }
    cout << ans << '\n';
    return 0;
}
0