結果

問題 No.2306 [Cherry 5th Tune C] ウソツキタマシイ
ユーザー gyozasukisukigyozasukisuki
提出日時 2023-05-19 21:31:18
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 255 ms / 2,000 ms
コード長 904 bytes
コンパイル時間 1,679 ms
コンパイル使用メモリ 168,384 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-10 05:12:44
合計ジャッジ時間 8,221 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 162 ms
5,376 KB
testcase_08 AC 32 ms
5,376 KB
testcase_09 AC 93 ms
5,376 KB
testcase_10 AC 93 ms
5,376 KB
testcase_11 AC 109 ms
5,376 KB
testcase_12 AC 143 ms
5,376 KB
testcase_13 AC 94 ms
5,376 KB
testcase_14 AC 81 ms
5,376 KB
testcase_15 AC 203 ms
5,376 KB
testcase_16 AC 211 ms
5,376 KB
testcase_17 AC 255 ms
5,376 KB
testcase_18 AC 251 ms
5,376 KB
testcase_19 AC 250 ms
5,376 KB
testcase_20 AC 252 ms
5,376 KB
testcase_21 AC 251 ms
5,376 KB
testcase_22 AC 250 ms
5,376 KB
testcase_23 AC 253 ms
5,376 KB
testcase_24 AC 248 ms
5,376 KB
testcase_25 AC 249 ms
5,376 KB
testcase_26 AC 250 ms
5,376 KB
testcase_27 AC 226 ms
5,376 KB
testcase_28 AC 232 ms
5,376 KB
testcase_29 AC 213 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
//#include <atcoder/all>
//using namespace atcoder;
using namespace std;
const int INF = 1e9;
using ll = long long;
using inv = vector<int>;
using stv = vector<string>;
using pint = pair<int,int>;
#define FOR(i,l,r) for(int i=(l); i<(r); i++)
#define rep(i,r) for(int i=0; i<(r); i++)
#define repl(i,r) for(long long i=0; i<(r); i++)
#define FORl(i,l,r) for(long long i=(l); i<(r); i++)
#define INFL ((1LL<<62)-(1LL<<31))
#define pb(x) push_back(x)
#define CIN(x) cin >> x

int main(){
  int N,M;
  cin >> N >> M;
  vector<ll> A(M);
  rep(i,M) cin >> A[i];

  ll ans = 0LL;

  rep(i,M){
    ans += A[i]*A[i];
  }

  int Q;
  cin >> Q;
  rep(q,Q){
    int C,K,D;
    cin >> C >> K >> D;

    C--,D--;

    ans -= A[C]*A[C];
    ans -= A[D]*A[D];
    ans += (A[C]-K)*(A[C]-K);
    ans += (A[D]+K)*(A[D]+K);
    A[C] -= K;
    A[D] += K;

    cout << ans << endl;
  }

  return 0;
}
0