結果

問題 No.2559 眩しい数直線
ユーザー kekenxkekenx
提出日時 2024-01-09 15:23:40
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 478 bytes
コンパイル時間 644 ms
コンパイル使用メモリ 73,916 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-27 19:54:27
合計ジャッジ時間 1,568 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cassert>
#include <vector>

using namespace std;

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

  int N, X; cin >> N >> X;
  vector<int> L(X + 1, 0);
  for (int i = 0; i < N; i++) {
    int A, B; cin >> A >> B;
    for (int j = max(0, A - B); j <= min(X, A + B); j++) {
      int s = abs(A - j);
      L[j] = max(L[j], B - s);
    }
  }
  for (int i = 1; i <= X; i++) {
    cout << L[i] << (i == X? "\n": " ");
  }
  return 0;
}
0