답안 #98644

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
98644 2019-02-25T02:31:09 Z Tieuphong Relativnost (COCI15_relativnost) C++11
0 / 140
1095 ms 33792 KB
/***************************************************************************/
/**********************  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][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) t[id][i] = 0;
        FOR(i, 0, c)
            FOR(j, 0, c)
                t[id][i+j] += (t[id*2][i] * t[id*2+1][j]) % MOD;
        total[id] = (total[id*2] * total[id*2+1]) % MOD;
    }

    int Get()
    {
        int res = total[1];
        FOR(i, 0, c-1)
             res = (res - t[1][i] + 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 Incorrect 9 ms 740 KB Output isn't correct
2 Incorrect 12 ms 768 KB Output isn't correct
3 Incorrect 24 ms 768 KB Output isn't correct
4 Incorrect 496 ms 24252 KB Output isn't correct
5 Runtime error 568 ms 33792 KB Execution killed with signal 9 (could be triggered by violating memory limits)
6 Runtime error 1093 ms 33792 KB Execution killed with signal 9 (could be triggered by violating memory limits)
7 Incorrect 1095 ms 24312 KB Output isn't correct
8 Runtime error 352 ms 33792 KB Execution killed with signal 9 (could be triggered by violating memory limits)
9 Runtime error 277 ms 33792 KB Execution killed with signal 9 (could be triggered by violating memory limits)
10 Runtime error 1042 ms 33792 KB Execution killed with signal 9 (could be triggered by violating memory limits)