結果

問題 No.2306 [Cherry 5th Tune C] ウソツキタマシイ
ユーザー anonymouslyanonymously
提出日時 2023-05-19 21:37:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 625 bytes
コンパイル時間 1,635 ms
コンパイル使用メモリ 169,228 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-05-10 05:16:47
合計ジャッジ時間 5,821 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,624 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 5 ms
5,376 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

//ソウルパワー
long soulPower(size_t m,vector<long> a){
	long result=0;
	for(size_t i=0;i<m;i++){
		result+=(a[i]*a[i]);
	}
	return result;
}

int main(){
	//最初, i=1,2,…,M それぞれに対して, 色 i の魂が N 個中 Ai個ある.
	unsigned long n;
	size_t m;
	cin>>n>>m;
	vector<long> a(m);
	for(size_t i=0;i<m;i++){
		cin>>a.at(i);
	}
	size_t q;
	cin>>q;
	while(q--){
		//色Cである魂のうち, K個は本当は色Dである.
		size_t c,d;
		long k;
		cin>>c>>k>>d;
		a.at(c-1)-=k;
		a.at(d-1)+=k;
		cout<<soulPower(m,a)<<endl;
	}
	return EXIT_SUCCESS;	
}
0