結果

問題 No.1386 Range add Simulation
ユーザー 👑 NachiaNachia
提出日時 2021-02-10 16:55:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 1,271 bytes
コンパイル時間 2,339 ms
コンパイル使用メモリ 203,764 KB
実行使用メモリ 10,472 KB
最終ジャッジ日時 2024-07-08 03:23:31
合計ジャッジ時間 22,797 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 48 ms
6,736 KB
testcase_07 AC 48 ms
6,876 KB
testcase_08 AC 49 ms
6,884 KB
testcase_09 AC 50 ms
7,004 KB
testcase_10 AC 48 ms
6,880 KB
testcase_11 AC 96 ms
10,464 KB
testcase_12 AC 96 ms
10,340 KB
testcase_13 AC 95 ms
10,468 KB
testcase_14 AC 95 ms
10,340 KB
testcase_15 AC 95 ms
10,340 KB
testcase_16 AC 96 ms
10,468 KB
testcase_17 AC 97 ms
10,340 KB
testcase_18 AC 94 ms
10,472 KB
testcase_19 AC 93 ms
10,468 KB
testcase_20 AC 96 ms
10,464 KB
testcase_21 AC 97 ms
10,376 KB
testcase_22 AC 94 ms
10,344 KB
testcase_23 AC 94 ms
10,468 KB
testcase_24 AC 95 ms
10,344 KB
testcase_25 AC 95 ms
10,344 KB
testcase_26 AC 96 ms
10,468 KB
testcase_27 AC 95 ms
10,340 KB
testcase_28 AC 96 ms
10,344 KB
testcase_29 AC 95 ms
10,340 KB
testcase_30 AC 95 ms
10,468 KB
testcase_31 AC 94 ms
10,464 KB
testcase_32 AC 113 ms
10,344 KB
testcase_33 AC 122 ms
10,340 KB
testcase_34 AC 96 ms
10,468 KB
testcase_35 AC 3 ms
5,376 KB
testcase_36 AC 13 ms
5,376 KB
testcase_37 AC 14 ms
5,376 KB
testcase_38 AC 13 ms
5,376 KB
testcase_39 AC 11 ms
5,376 KB
testcase_40 AC 97 ms
10,340 KB
testcase_41 AC 93 ms
10,436 KB
testcase_42 AC 96 ms
10,468 KB
testcase_43 AC 95 ms
10,428 KB
testcase_44 AC 99 ms
10,328 KB
testcase_45 AC 95 ms
10,340 KB
testcase_46 AC 97 ms
10,468 KB
testcase_47 AC 97 ms
10,340 KB
testcase_48 AC 95 ms
10,464 KB
testcase_49 AC 115 ms
10,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using LL=long long;
#define rep(i,n) for(int i=0; i<(n); i++)

struct Query{ int c,i,j; };

int N,Q;
LL B[100000];
int ddA[100002];
vector<Query> ans;

void Q1(int i){ ans.push_back({1,i+1,0}); B[i]++; }
void Q2(int i){ ans.push_back({2,i+1,0}); B[i]--; }
void Q3(int i,int j){ ans.push_back({3,i+1,j+1}); B[i]+=B[j]; }
void Q4(int i,int j){ ans.push_back({4,i+1,j+1}); B[i]-=B[j]; }
void make_k(int i,LL k){
    if(k>0){ make_k(i,k/2); Q3(i,i); if(k&1) Q1(i); }
    if(k<0){ make_k(i,-((-k)/2)); Q3(i,i); if(k&1) Q2(i); }
}

int main(){
    scanf("%d%d",&N,&Q);

    rep(i,N) B[i]=0;

    LL cB[3]={};

    rep(i,Q){
        int c,s; scanf("%d%d",&c,&s); s--;
        if(c==1){
            Q1(s);
            if(s<N-1) Q1(s+1);
        }
        if(c==2){
            cB[0]+=(s+1ll)*(s+1ll);
            cB[1]-=(s*2+1);
            cB[2]+=2;
            if(s<N-2) Q2(s+2);
            if(s<N-3) Q2(s+3);
        }
    }

    for(int i=2; i>=0; i--){
        if(i<N){ cB[i]+=B[i]; Q4(i,i); make_k(i,cB[i]); }
        rep(i,N-1) Q3(i+1,i);
    }

    printf("%d\n",(int)ans.size());
    for(auto q:ans){
        if(q.c<=2) printf("%d %d\n",q.c,q.i);
        if(q.c>=3) printf("%d %d %d\n",q.c,q.i,q.j);
    }

    return 0;
}
0