結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー iqueue02
提出日時 2020-06-25 17:21:33
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 604 bytes
コンパイル時間 1,893 ms
コンパイル使用メモリ 194,124 KB
最終ジャッジ日時 2025-01-11 10:14:31
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i = 0; i < (n);i++)
#define sz(x) int(x.size())
typedef long long ll;
typedef long double ld;
typedef pair<int,int> P;
typedef pair<ll, int> PL;
constexpr int INF = 2e9;

int main() {
  int n, d;
  cin >> n >> d;
  vector<int> a(n, 0);
  rep(i,n - 1) {
    cin >> a[i + 1];
    a[i + 1] += a[i];
  }

  for (int i = 1; i < n; i++) {
    int l = a[i] - a[i - 1];
    if (l >= d) continue;
    a[i] = a[i - 1] + d;
  }
  for (int i = 0; i < n; i++) {
    cout << a[i];
    if (i < n - 1) cout << " ";
  }
  cout << endl;
  return 0;
} 
0