結果

問題 No.2306 [Cherry 5th Tune C] ウソツキタマシイ
ユーザー HIcoderHIcoder
提出日時 2023-07-08 14:25:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 549 ms / 2,000 ms
コード長 1,007 bytes
コンパイル時間 1,376 ms
コンパイル使用メモリ 111,196 KB
実行使用メモリ 10,240 KB
最終ジャッジ日時 2024-07-22 09:52:12
合計ジャッジ時間 13,927 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 4 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 5 ms
6,944 KB
testcase_05 AC 5 ms
6,940 KB
testcase_06 AC 5 ms
6,940 KB
testcase_07 AC 336 ms
8,448 KB
testcase_08 AC 61 ms
6,944 KB
testcase_09 AC 194 ms
8,548 KB
testcase_10 AC 140 ms
6,940 KB
testcase_11 AC 214 ms
6,944 KB
testcase_12 AC 309 ms
9,728 KB
testcase_13 AC 204 ms
8,972 KB
testcase_14 AC 165 ms
7,420 KB
testcase_15 AC 409 ms
7,552 KB
testcase_16 AC 364 ms
6,944 KB
testcase_17 AC 535 ms
10,240 KB
testcase_18 AC 539 ms
10,240 KB
testcase_19 AC 530 ms
10,240 KB
testcase_20 AC 540 ms
10,240 KB
testcase_21 AC 536 ms
10,240 KB
testcase_22 AC 538 ms
10,240 KB
testcase_23 AC 540 ms
10,240 KB
testcase_24 AC 533 ms
10,240 KB
testcase_25 AC 531 ms
10,240 KB
testcase_26 AC 549 ms
10,240 KB
testcase_27 AC 466 ms
10,112 KB
testcase_28 AC 469 ms
10,240 KB
testcase_29 AC 207 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<set>
#include<algorithm>
#include<vector>
#include<string>
#include<set>
#include<map>
#include<numeric>
#include<queue>
#include<cmath>
using namespace std;
typedef long long ll;
const ll INF=1LL<<60;
typedef pair<ll,ll> P;
typedef pair<int,P> PP;
const ll MOD=998244353;
const double PI=acos(-1);


int main(){
    int N,M;
    cin>>N>>M;
    map<int,ll> mp;
    for(int i=1;i<=M;i++){
        ll a;
        cin>>a;
        mp[i]=a;
    }

    ll ans=0;
    for(auto [c,num]:mp){
        ans+=1LL*num*num;
    }

    int Q;
    cin>>Q;

    vector<ll> outputans(Q);

   
    for(int q=0;q<Q;q++){
        int c,k,d;
        cin>>c>>k>>d;

        ans-=mp[c]*mp[c];
        ans-=mp[d]*mp[d];

        mp[c]-=k;
        mp[d]+=k;
        ans+=mp[c]*mp[c];
        ans+=mp[d]*mp[d];

        // for(auto [v,num]:mp){
        //     cout<<"v="<<v<<",num="<<num<<endl;
        // }

        outputans[q]=ans;
       
    }

    for(ll v:outputans){
        cout<<v<<endl;
    }



}
0