# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
268677 | mayhoubsaleh | Relativnost (COCI15_relativnost) | C++14 | 4000 ms | 24268 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ll long long
#define pb push_back
#define left 2*i+1
#define righ 2*i+2
#define mid (l+r)/2
#define IOS ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
using namespace std;
const int maxn=1e5+100;
const int inf=1e9+10;
const int mod=1e4+7;
int n,a[maxn],b[maxn],c,q;
int st[4*maxn][22];
void build(int i,int l,int r){
if(l==r){
st[i][0]=b[r]%mod;
st[i][1]=a[r]%mod;
return;
}
build(left,l,mid);
build(righ,mid+1,r);
for(int j=0;j<=c;j++){
for(int k=0;k<=c;k++){
st[i][min(j+k,c)]=(st[i][min(j+k,c)]+(st[left][j]*st[righ][k])%mod)%mod;
}
}
}
void upd(int i,int l,int r,int id){
if(r<id||l>id)return;
if(l==r){
st[i][0]=b[id]%mod;
st[i][1]=a[id]%mod;
return;
}
upd(left,l,mid,id);
upd(righ,mid+1,r,id);
for(int j=0;j<=c;j++)st[i][j]=0;
for(int j=0;j<=c;j++){
for(int k=0;k<=c;k++){
st[i][min(j+k,c)]=(st[i][min(j+k,c)]+(st[left][j]*st[righ][k])%mod)%mod;
}
}
}
int main()
{
IOS
//cin>>n>>c;
scanf("%d%d",&n,&c);
for(int i=0;i<n;i++)scanf("%d",a+i);//cin>>a[i];
for(int i=0;i<n;i++)scanf("%d",b+i);//cin>>b[i];
build(0,0,n-1);
//cin>>q;
scanf("%d",&q);
while(q--){
int p;
//cin>>p;
scanf("%d",&p);
p--;
//cin>>a[p]>>b[p];
scanf("%d%d",a+p,b+p);
//for(int i=0;i<n;i++)cout<<a[i]<<' ';cout<<endl;
//for(int j=0;j<n;j++)cout<<b[j]<<' ';cout<<endl;
upd(0,0,n-1,p);
//cout<<st[0][c]<<endl;
printf("%d\n",st[0][c]);
}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |