/***************************************************************************/
/********************** LANG TU HAO HOA **********************************/
/***************************************************************************/
#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 pii pair<int, int>
#define sz(x) ((int) x.size())
#define PB push_back
#define PF push_front
#define MP make_pair
#define ll long long
#define F first
#define S second
#define maxc 1000000007
#define MOD 10007
#define base 107
#define eps 1e-6
#define pi acos(-1)
#define N 100005
#define C 22
#define task ""
#define remain(x) ((x > MOD) ? (x - MOD) : x)
using namespace std;
int n, c, a[N], b[N], q;
struct IT
{
int t[N<<2][C], total[N<<2];
void Upd(int l, int r, int id, int x)
{
if (l > x || r < x) return;
if (l == r)
{
t[id][0] = b[x];
t[id][1] = a[x];
total[id] = (a[x]+b[x]) % MOD;
return;
}
int mid = (l + r) >> 1;
Upd(l, mid, id*2, x);
Upd(mid+1, r, id*2+1, x);
FOR(i, 0, c-1) t[id][i] = 0;
FOR(i, 0, c-1)
FOR(j, 0, c-1)
if (i+j < c) t[id][i+j] += (t[id*2][i] * t[id*2+1][j]) % MOD;
total[id] = (1ll*total[id*2] * total[id*2+1]) % MOD;
}
int Get()
{
int res = total[1];
FOR(i, 0, c-1)
res = (1ll*res - t[1][i] + 1ll*MOD*MOD) % MOD;
return res;
}
} Tree;
int main()
{
ios_base::sync_with_stdio(0); cin.tie(NULL); cout.tie(NULL);
//freopen(task".inp", "r", stdin);
//freopen(task".out", "w", stdout);
cin >> n >> c;
FOR(i, 1, n) cin >> a[i];
FOR(i, 1, n) cin >> b[i];
FOR(i, 1, n) Tree.Upd(1, n, 1, i);
cin >> q;
while (q--)
{
int pos, x, y;
cin >> pos >> x >> y;
a[pos] = x;
b[pos] = y;
Tree.Upd(1, n, 1, pos);
cout << Tree.Get() << '\n';
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
10 ms |
640 KB |
Output is correct |
2 |
Incorrect |
11 ms |
640 KB |
Output isn't correct |
3 |
Incorrect |
15 ms |
512 KB |
Output isn't correct |
4 |
Incorrect |
325 ms |
12976 KB |
Output isn't correct |
5 |
Incorrect |
1217 ms |
25044 KB |
Output isn't correct |
6 |
Incorrect |
1982 ms |
24996 KB |
Output isn't correct |
7 |
Incorrect |
672 ms |
12992 KB |
Output isn't correct |
8 |
Incorrect |
504 ms |
24928 KB |
Output isn't correct |
9 |
Incorrect |
753 ms |
25036 KB |
Output isn't correct |
10 |
Incorrect |
2476 ms |
24928 KB |
Output isn't correct |