提交记录 22027


用户 题目 状态 得分 用时 内存 语言 代码长度
bykem 1008. 测测你的二维数点 Accepted 100 2.518 s 156260 KB C++17 642 B
提交时间 评测时间
2024-07-29 19:58:43 2024-07-29 19:58:47
#include <algorithm>

using namespace std;

constexpr int mask(int x) { return x; }
constexpr int kN = 1e7;

int h[kN], p[kN];
int f[mask(kN) + 1];

void count_2d(int n, const unsigned *x, const unsigned *y, unsigned *out) {
  fill_n(h, n, -1);
  for (int i = 0; i < n; ++i) {
    p[i] = h[x[i]];
    h[x[i]] = i;
  }
  for (int i = 0; i < n; ++i) {
    for (int j = h[i]; ~j; j = p[j]) {
      unsigned s = 0;
      for (int x = y[j]; x; x &= x - 1) {
        s += f[mask(x)];
      }
      out[j] = s;
    }
    for (int j = h[i]; ~j; j = p[j]) {
      for (int x = y[j] + 1; x <= n; x += x & -x) {
        ++f[mask(x)];
      }
    }
  }
}

CompilationN/AN/ACompile OKScore: N/A

Testcase #12.518 s152 MB + 612 KBAcceptedScore: 100


Judge Duck Online | 评测鸭在线
Server Time: 2025-07-15 17:37:39 | Loaded in 0 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠