# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
973795 | sleepntsheep | Relativnost (COCI15_relativnost) | C11 | 2976 ms | 17412 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <stdio.h>
#define N 100000
#define C 20
const long long MOD = 10007;
int q, n, c, a[N], b[N], p, aa, bb;
int t[N<<1][C+1];
void base(int i)
{
t[i+n][0] = b[i] % MOD;
t[i+n][1] = a[i] % MOD;
}
void pul(int i)
{
for (int j = 0; j <= c; ++j)
t[i][j] = 0;
for (int j = 0; j <= c; ++j)
{
for (int k = 0; k <= c; ++k)
{
int l = j+k<=c?j+k:c;
t[i][l] = (t[i][l] + t[i<<1][j] * 1ll * t[i<<1|1][k] % MOD) % MOD;
}
}
}
int main()
{
scanf("%d%d",&n,&c);
for (int i = 0; i < n; ++i) scanf("%d", a+i);
for (int i = 0; i < n; ++i) scanf("%d", b+i), base(i);
for (int i = n; --i;) pul(i);
scanf("%d", &q);
while (q--)
{
scanf("%d%d%d", &p, &aa, &bb), --p;
a[p] = aa, b[p] = bb;
base(p);
for (p+=n;p>>=1;) pul(p);
printf("%d\n", t[1][c]);
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |