結果

問題 No.2306 [Cherry 5th Tune C] ウソツキタマシイ
ユーザー anonymouslyanonymously
提出日時 2023-05-19 21:49:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 257 ms / 2,000 ms
コード長 712 bytes
コンパイル時間 1,997 ms
コンパイル使用メモリ 169,576 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-10 05:23:56
合計ジャッジ時間 9,128 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 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 AC 160 ms
5,376 KB
testcase_08 AC 34 ms
5,376 KB
testcase_09 AC 93 ms
5,376 KB
testcase_10 AC 98 ms
5,376 KB
testcase_11 AC 110 ms
5,376 KB
testcase_12 AC 149 ms
5,376 KB
testcase_13 AC 94 ms
5,376 KB
testcase_14 AC 81 ms
5,376 KB
testcase_15 AC 204 ms
5,376 KB
testcase_16 AC 213 ms
5,376 KB
testcase_17 AC 250 ms
5,376 KB
testcase_18 AC 253 ms
5,376 KB
testcase_19 AC 254 ms
5,376 KB
testcase_20 AC 257 ms
5,376 KB
testcase_21 AC 255 ms
5,376 KB
testcase_22 AC 253 ms
5,376 KB
testcase_23 AC 253 ms
5,376 KB
testcase_24 AC 252 ms
5,376 KB
testcase_25 AC 254 ms
5,376 KB
testcase_26 AC 257 ms
5,376 KB
testcase_27 AC 227 ms
5,376 KB
testcase_28 AC 248 ms
5,376 KB
testcase_29 AC 210 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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