QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#550936#9250. Max GCDucup-team3931#RE 0ms5728kbC++201.9kb2024-09-07 14:45:212024-09-07 14:45:22

Judging History

你现在查看的是最新测评结果

  • [2024-09-07 14:45:22]
  • 评测
  • 测评结果:RE
  • 用时:0ms
  • 内存:5728kb
  • [2024-09-07 14:45:21]
  • 提交

answer

#ifdef LOCAL
#include "stdafx.h"
#else
#include <bits/stdc++.h>
#define IL inline
#define LL long long
#define eb emplace_back
#define sz(v) ((int) (v).size())
#define L(i, j, k) for (int i = (j); i <= (k); ++i)
#define R(i, j, k) for (int i = (j); i >= (k); --i)
#define FIO(FILE) freopen(FILE".in", "r", stdin), freopen(FILE".out", "w", stdout)
using namespace std;

using vi = vector<int>;
#endif

constexpr int N = 1.5e5 + 9;
int n, m, B;

int ns[N];

struct {
  int l, r, i;
} q[N];

vi a[N];
vector<pair<int, int>> ad[N];

int L[N], R[N], id[N], s1[N], s2[N];

int main () {
  ios::sync_with_stdio(0), cin.tie(0);
  cin >> n >> m;
  L (i, 1, n) {
    int x;
    cin >> x;
    for (int j = 1; j * j <= x; ++j) {
      if (x % j == 0) {
        a[j].eb(i);
        if (x / j > j) {
          a[x / j].eb(i);
        }
      }
    }
  }
  L (i, 1, n) {
    int k = sz(a[i]) - 1;
    R (j, sz(a[i]) - 1, 1) {
      while (k > j && a[i][k] - a[i][j] >= a[i][j] - a[i][j - 1]) {
        --k;
      }
      if (k < sz(a[i]) - 1) {
        ad[a[i][j - 1]].eb(a[i][k + 1], i);
      }
    }
  }
  L (i, 1, m) {
    cin >> q[i].l >> q[i].r;
    q[i].i = i;
  }
  sort(q + 1, q + m + 1, [] (auto a, auto b) {
    return a.l > b.l;
  });
  B = sqrt(n);
  for (int i = 1, l = 1, r; l <= n; ++i, l = r + 1) {
    r = min(l + B - 1, n);
    L[i] = l;
    R[i] = r;
    fill(id + l, id + r + 1, i);
  }
  int l = n;
  L (i, 1, m) {
    while (l >= q[i].l) {
      for (auto [x, y] : ad[l]) {
        s1[x] = max(s1[x], y);
        s2[id[x]] = max(s2[id[x]], y);
      }
      --l;
    }
    int z = id[q[i].r];
    R (k, z - 1, 1) {
      ns[q[i].i] = max(ns[q[i].i], s2[k]);
    }
    R (k, q[i].r, L[z]) {
      ns[q[i].i] = max(ns[q[i].i], s1[k]);
    }
  }
  L (i, 1, m) {
    cout << ns[i] << '\n';
  }
}
// I love WHQ!

详细

Test #1:

score: 100
Accepted
time: 0ms
memory: 5728kb

input:

8 8
8 24 4 6 6 7 3 3
1 5
2 6
3 7
5 8
4 8
1 3
2 5
3 8

output:

4
2
3
1
3
4
2
3

result:

ok 8 tokens

Test #2:

score: -100
Runtime Error

input:

150000 100000
982800 554400 665280 982800 997920 720720 786240 831600 997920 982800 786240 982800 942480 831600 887040 665280 831600 960960 786240 982800 786240 942480 665280 831600 942480 665280 982800 960960 960960 997920 720720 960960 960960 665280 982800 665280 982800 942480 786240 997920 554400...

output:


result: