結果

問題 No.2931 Shibuya 109
ユーザー chihi311chihi311
提出日時 2024-10-12 16:29:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,119 ms / 4,000 ms
コード長 621 bytes
コンパイル時間 1,882 ms
コンパイル使用メモリ 203,296 KB
実行使用メモリ 11,476 KB
最終ジャッジ日時 2024-10-12 16:29:27
合計ジャッジ時間 23,029 ms
ジャッジサーバーID
(参考情報)
judge / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 906 ms
11,372 KB
testcase_01 AC 2,065 ms
11,448 KB
testcase_02 AC 2,118 ms
11,416 KB
testcase_03 AC 2,077 ms
11,412 KB
testcase_04 AC 2,042 ms
11,476 KB
testcase_05 AC 2,119 ms
11,400 KB
testcase_06 AC 2,103 ms
11,412 KB
testcase_07 AC 316 ms
11,416 KB
testcase_08 AC 1,394 ms
11,436 KB
testcase_09 AC 1,441 ms
11,436 KB
testcase_10 AC 1,510 ms
11,392 KB
testcase_11 AC 42 ms
11,396 KB
testcase_12 AC 41 ms
11,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
ll z=10000000;
int d=10;
ll op(ll a,ll b){return((a/z+b/z+b%z/d*(a%d)+(a%d+b%d)/d)*z+d*(a%z/d+b%z/d)+(a%d+b%d)%9);}
int main(){
  ll n,q;cin>>n>>q;
  vector<ll>s(1<<20,0);
  s[0]=1<<19;
  for(ll i=0;i<n;i++){
  	ll a;cin>>a;
  	if(a==9)a=z+d;
  	else a+=d;
  	s[s[0]+i+1]=a;
  }
  for(ll i=s[0]-1;i>0;i--)s[i]=op(s[i*2],s[i*2+1]);
  for(ll i=0;i<q;i++){
    ll pt,l,r=0,t=0;cin>>pt>>l;l++;
    while(pt<l){
      while(pt%(2<<t)==0)t++;
      while(pt+(1<<t)>=l&&t>=1)t--;
      r=op(r,s[(pt+s[0])>>t]);
      pt+=1<<t;
    }
    cout<<r/z<<endl;
  }
}
0