# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
40713 | Hassoony | Relativnost (COCI15_relativnost) | C++14 | 457 ms | 20268 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <stdio.h>
#include <stdlib.h>
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef double D;
const ll inf=(1ll<<61);
const int mod=10007;
const int MX=1e5+9;
int n,c,a[MX],b[MX],tree[MX][21];
void update(int x){
memset(tree[x],0,sizeof(tree[x]));
for(int i=0;i<=c;i++){
for(int j=0;j<=c;j++){
int sz=i+j;sz=min(sz,c);
tree[x][sz]=(tree[x][sz]+tree[x*2][i]*tree[x*2+1][j])%mod;
}
}
}
void update1(int x){
x+=n;
memset(tree[x],0,sizeof(tree[x]));
tree[x][0]=b[x-n];
tree[x][1]=a[x-n];
for(x/=2;x>0;x/=2)update(x);
}
int main(){
cin>>n>>c;
for(int i=0;i<n;i++){
scanf("%d",&a[i]);
a[i]%=mod;
}
for(int i=0;i<n;i++){
scanf("%d",&b[i]);
b[i]%=mod;
}
for(int i=0;i<n;i++){
tree[i+n][0]=b[i];
tree[i+n][1]=a[i];
}
for(int i=0;i<n;i++)update(i);
int q,i,l,r;
scanf("%d",&q);
while(q--){
scanf("%d%d%d",&i,&l,&r);
a[i-1]=l%mod;
b[i-1]=r%mod;
update1(i-1);
printf("%d\n",tree[1][c]);
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |