답안 #93629

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
93629 2019-01-10T12:26:49 Z dfistric Relativnost (COCI15_relativnost) C++14
112 / 140
4000 ms 24192 KB
#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[2 * OFF][22];
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[x][0] = b % MOD;
  tour[x][1] = a % MOD;
  x /= 2;

  while (x) {
    REP(i, C + 1) tour[x][i] = 0;

    REP(i, C + 1) {
      REP(j, C + 1) {
        int t = min(C, i + j);
        tour[x][t] = add(tour[x][t], mul(tour[x * 2][i], tour[x * 2 + 1][j]));
      }
    }
    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[i][0] = 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[1][C] << "\n";
  }

  return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 36 ms 23032 KB Output is correct
2 Correct 44 ms 22904 KB Output is correct
3 Correct 78 ms 22904 KB Output is correct
4 Correct 682 ms 23672 KB Output is correct
5 Correct 2635 ms 24192 KB Output is correct
6 Execution timed out 4088 ms 24108 KB Time limit exceeded
7 Correct 1689 ms 23776 KB Output is correct
8 Correct 973 ms 23808 KB Output is correct
9 Correct 1382 ms 24160 KB Output is correct
10 Execution timed out 4085 ms 23936 KB Time limit exceeded