# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
93630 | dfistric | Relativnost (COCI15_relativnost) | C++14 | 4061 ms | 9744 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define FOR(i, a, b) for (int i = (a); i < (b); i++)
#define FORd(i, a, b) for (int i = (a); i >= (b); i--)
#define REP(i, n) FOR(i, 0, n)
#define ll long long
using namespace std;
const int OFF = (1 << 17);
const int MOD = 10007;
int tour[22][2 * OFF];
int A[OFF], B[OFF];
int C;
int add(int a, int b) {
return (a + b) % MOD;
}
int mul(int a, int b) {
return (a * b) % MOD;
}
void update(int x, int a, int b) {
x += OFF;
tour[0][x] = b % MOD;
tour[1][x] = a % MOD;
x /= 2;
while (x) {
REP(i, C + 1) tour[i][x] = 0;
REP(i, C + 1) {
REP(j, C + 1) {
int t = min(C, i + j);
tour[t][x] = add(tour[t][x], mul(tour[i][x * 2], tour[j][x * 2 + 1]));
}
}
x /= 2;
}
return;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(0);
int n, a, b, x;
cin >> n >> C;
REP(i, 2 * OFF) tour[0][i] = 1;
REP(i, n) cin >> A[i];
REP(i, n) cin >> B[i];
REP(i, n) update(i, A[i], B[i]);
int q;
cin >> q;
REP(i, q) {
cin >> x >> a >> b;
update(x - 1, a, b);
cout << tour[C][1] << "\n";
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |