提交记录 22022


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

using namespace std;

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

int d[kN];
int f[mask(kN) + 1];

void add(int n, int x) {
  for (++x; x <= n; x += x & -x) {
    ++f[mask(x)];
  }
}
int sum(int x) {
  int s = 0;
  for (; x; x &= x - 1) {
    s += f[mask(x)];
  }
  return s;
}
void count_2d(int n, const unsigned *x, const unsigned *y, unsigned *out) {
  for (int i = 0; i < n; ++i) {
    d[i] = i;
  }
  sort(d, d + n, [x, y](int i, int j) {
    return x[i] < x[j] || x[i] == x[j] && y[i] > y[j];
  });
  for (int i = 0; i < n; ++i) {
    out[d[i]] = sum(y[d[i]]);
    add(n, y[d[i]]);
  }
}

CompilationN/AN/ACompile OKScore: N/A

Testcase #13.882 s114 MB + 500 KBAcceptedScore: 100


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