結果

問題 No.3656 Game Scores and Costs
コンテスト
ユーザー MM
提出日時 2026-08-30 13:40:36
言語 C++23(gcc16)
(gcc 16.1.0 + boost 1.92.0)
コンパイル:
g++-16 -O2 -lm -std=c++23 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 63 ms / 2,000 ms
+ 824µs
コード長 1,011 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 4,460 ms
コンパイル使用メモリ 388,324 KB
実行使用メモリ 7,288 KB
最終ジャッジ日時 2026-08-30 13:40:59
合計ジャッジ時間 7,433 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include<bits/stdc++.h>
#include<atcoder/all>
#define chmin(x,y) (x) = min((x),(y))
#define chmax(x,y) (x) = max((x),(y))
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define vec vector
#define all(a) a.begin(), a.end()
#define rall(a) a.rbegin(), a.rend()
#define pb push_back 
#define eb emplace_back

using namespace std;
using namespace atcoder;
using ll = long long;
using ld = long double;
const ll mod = 998244353;
using mint = modint998244353;
const vector<int> dx = {1,0,-1,0}, dy = {0,1,0,-1};
// using Graph = vector<vector<pair<int,ll>>>;
using Graph = vector<vector<int>>;

int main(){
  // input
  int N,K; ll X;
  cin >> N >> K >> X;
  vec<ll> A(N);
  rep(i,N) cin >> A[i];

  // solve
  priority_queue<ll> pq;
  ll sum = 0, ans = -9e18;
  rep(i,N){
    pq.push(-A[i]);
    sum += A[i];
    if(pq.size() > K){
      sum += pq.top();
      pq.pop();
    }
    ll tmp = sum - X * (i+1);
    // cout << i << " " << tmp << endl;
    chmax(ans, tmp);
  }

  // output
  cout << ans << endl;
}
0