洛谷P5149 会议座位
P5149 会议座位
字符串哈希 + 归并排序
代码
#include<bits/stdc++.h>
using namespace std;
const int N = 1e5 + 10;
string a[N];
int tr[N];
int n;
int lowbit(int x){
return x & -x;
}
void add(int a,int b){
for(int i=a;i<=n;i+=lowbit(i)) tr[i] += b;
}
int query
原创
2021-02-18 21:43:28 ·
84 阅读 ·
0 评论