結果
問題 | No.1386 Range add Simulation |
ユーザー | 👑 Nachia |
提出日時 | 2021-02-07 21:12:33 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,869 bytes |
コンパイル時間 | 2,038 ms |
コンパイル使用メモリ | 206,876 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-04 14:26:30 |
合計ジャッジ時間 | 18,245 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | RE | - |
testcase_47 | RE | - |
testcase_48 | RE | - |
testcase_49 | RE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using LL=long long; using ULL=unsigned long long; #define rep(i,n) for(int i=0; i<(n); i++) struct QueryA{ int c,s; }; struct Query{ int c,i,j; }; int N,Q; LL B[100000]; int ddA[100001]; vector<QueryA> A; vector<Query> ans; LL topA=0, topdA=0, topddA=0; LL Alast2=0, Alast1=0; void query_1(int i){ ans.push_back({1,i,0}); B[i]++; } void query_2(int i){ ans.push_back({2,i,0}); B[i]--; } void query_3(int i,int j){ ans.push_back({3,i,j}); B[i]+=B[j]; } void query_4(int i,int j){ ans.push_back({4,i,j}); B[i]-=B[j]; } void make_k(int i,LL k){ if(k>0){ make_k(i,k/2); query_3(i,i); if(k&1) query_1(i); } if(k<0){ make_k(i,-((-k)/2)); query_4(i,i); if(k&1) query_2(i); } } LL add_si(LL s,LL i){ s=abs(s-i)+1; return s*s; } int main(){ scanf("%d%d",&N,&Q); A.resize(Q); rep(i,Q){ int c,s; scanf("%d%d",&c,&s); s--; A[i]={c,s}; } rep(i,N+1) ddA[i]=0; rep(i,N){ if(A[i].c==1){ ddA[A[i].s]+=2; if(A[i].s<=N-2) Alast2 += add_si(N-2,A[i].s); if(A[i].s<=N-1) Alast1 += add_si(N-1,A[i].s); } if(A[i].c==2){ ddA[A[i].s+1]-=2; topA+=LL(A[i].s+1)*(A[i].s+1); topdA-=(A[i].s+1)*2-1; topddA+=2; if(A[i].s>=N-2) Alast2 += add_si(N-2,A[i].s); if(A[i].s>=N-1) Alast1 += add_si(N-1,A[i].s); } } rep(i,N) B[i]=0; make_k(0,topA); make_k(N-1,topdA); make_k(N-2,topddA); rep(i,N) printf("%lld ",B[i]); printf("\n"); for(int i=1; i<N-2; i++){ query_3(i,i-1); query_3(i,N-1); query_3(N-1,N-2); if(ddA[i]>0) rep(j,ddA[i]) query_1(N-2); if(ddA[i]<0) rep(j,-ddA[i]) query_2(N-2); } query_4(N-2,N-2); make_k(N-2,Alast2); query_4(N-1,N-1); make_k(N-1,Alast1); 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; }