# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
156146 | mdn2002 | Relativnost (COCI15_relativnost) | C++14 | 301 ms | 760 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
long long mod=1e9+7;
long long n,c,a[1005],b[1005],q,dp[1005][35];
long long f(int x,int cal)
{
if(x>=n)
{
if(cal>=c)return 1;
else return 0;
}
if(dp[x][cal]!=-1)return dp[x][cal];
long long num=0;
num+=a[x]*f(x+1,min(c,(long long)cal+1));
num%=10007;
num+=b[x]*f(x+1,cal);
num%=10007;
return dp[x][cal]=num;
}
int main()
{
cin>>n>>c;
for(int i=0;i<n;i++)cin>>a[i];
for(int i=0;i<n;i++)cin>>b[i];
cin>>q;
for(int i=0;i<q;i++)
{
memset(dp,-1,sizeof dp);
long long x,y,z;
cin>>x>>y>>z;
a[x-1]=y;
b[x-1]=z;
cout<<f(0,0)<<endl;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |