提交记录 22025


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

using namespace std;

constexpr int mask(int x) { return x + (x >> 10); }
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.438 s152 MB + 648 KBAcceptedScore: 100


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