結果

問題 No.2931 Shibuya 109
ユーザー chihi311chihi311
提出日時 2024-10-12 16:12:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,636 ms / 4,000 ms
コード長 958 bytes
コンパイル時間 1,896 ms
コンパイル使用メモリ 203,356 KB
実行使用メモリ 11,456 KB
最終ジャッジ日時 2024-10-12 16:12:59
合計ジャッジ時間 18,086 ms
ジャッジサーバーID
(参考情報)
judge / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 854 ms
11,456 KB
testcase_01 AC 1,481 ms
11,392 KB
testcase_02 AC 1,411 ms
11,376 KB
testcase_03 AC 1,636 ms
11,416 KB
testcase_04 AC 1,622 ms
11,264 KB
testcase_05 AC 1,456 ms
11,392 KB
testcase_06 AC 1,435 ms
11,408 KB
testcase_07 AC 238 ms
11,392 KB
testcase_08 AC 1,015 ms
11,264 KB
testcase_09 AC 1,090 ms
11,392 KB
testcase_10 AC 1,135 ms
11,392 KB
testcase_11 AC 9 ms
11,352 KB
testcase_12 AC 9 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
template<class T>T op(T a,T b){
	return((a/10000000+b/10000000+b%10000000/10*(a%10)+(a%10+b%10)/10)*10000000+10*(a%10000000/10+b%10000000/10)+(a%10+b%10)%9);
}
template<class T,T(*op)(T,T)>void segmake(vector<T> &seg){
  for(T i=seg[0]-1;i>0;i--){
    seg[i]=op(seg[i*2],seg[i*2+1]);
  }return;
}
template<class T,T(*op)(T,T)>T segprod(int begin,int end,T empty,vector<T> &seg){
  T ret=empty,bit=0,pt=begin;
  while(pt<end){
    while(pt%(2<<bit)==0)bit++;
    while(pt+(1<<bit)>=end&&bit>=1)bit--;
    ret=op(ret,seg[(pt+seg[0])>>bit]);
    pt+=1<<bit;
  }return ret;
}
int main(){
  int n,q;cin>>n>>q;
  vector<ll>s(1<<20,0);
  s[0]=1<<19;
  for(int i=0;i<n;i++){
  	ll a;cin>>a;
  	if(a==9)a=10000010;
  	if(a==1)a=11;
  	if(a==0)a=10;
  	s[s[0]+i+1]=a;
  }
  segmake<ll,op>(s);
  for(int i=0;i<q;i++){
    int f,e;cin>>f>>e;
    cout<<segprod<ll,op>(f,e+1,0,s)/10/1000000<<endl;
  }
}
0