結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 3 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 4 ms
6,820 KB
testcase_05 AC 4 ms
6,816 KB
testcase_06 AC 4 ms
6,816 KB
testcase_07 AC 142 ms
6,816 KB
testcase_08 AC 28 ms
6,820 KB
testcase_09 AC 80 ms
6,820 KB
testcase_10 AC 84 ms
6,820 KB
testcase_11 AC 94 ms
6,820 KB
testcase_12 AC 122 ms
6,816 KB
testcase_13 AC 85 ms
6,816 KB
testcase_14 AC 71 ms
6,816 KB
testcase_15 AC 182 ms
6,820 KB
testcase_16 AC 188 ms
6,816 KB
testcase_17 AC 218 ms
6,816 KB
testcase_18 AC 217 ms
6,816 KB
testcase_19 AC 213 ms
6,820 KB
testcase_20 AC 218 ms
6,816 KB
testcase_21 AC 213 ms
6,820 KB
testcase_22 AC 218 ms
6,816 KB
testcase_23 AC 216 ms
6,816 KB
testcase_24 AC 219 ms
6,820 KB
testcase_25 AC 221 ms
6,820 KB
testcase_26 AC 214 ms
6,820 KB
testcase_27 AC 198 ms
6,816 KB
testcase_28 AC 207 ms
6,820 KB
testcase_29 AC 182 ms
6,816 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