QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#106902 | #6371. Half is Good | ckiseki# | TL | 1189ms | 55704kb | C++20 | 4.1kb | 2023-05-19 18:15:38 | 2023-05-19 18:15:42 |
Judging History
answer
#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>
#ifdef CKISEKI
#define safe cerr<<__PRETTY_FUNCTION__<<" line "<<__LINE__<<" safe\n"
#define debug(a...) debug_(#a, a)
#define orange(a...) orange_(#a, a)
using std::cerr;
template <typename ...T>
void debug_(const char *s, T ...a) {
cerr << "\e[1;32m(" << s << ") = (";
int cnt = sizeof...(T);
(..., (cerr << a << (--cnt ? ", " : ")\e[0m\n")));
}
template <typename I>
void orange_(const char *s, I L, I R) {
cerr << "\e[1;32m[ " << s << " ] = [ ";
for (int f = 0; L != R; ++L)
cerr << (f++ ? ", " : "") << *L;
cerr << " ]\e[0m\n";
}
#else
#define safe ((void)0)
#define debug(...) ((void)0)
#define orange(...) ((void)0)
#endif
#define all(v) begin(v),end(v)
using namespace std;
// #define int int_fast32_t
// #define unsigned uint_fast32_t
namespace {
const int maxn = 10000025;
const int SHIFT = 22;
const int maxc = 1 << SHIFT;
const int mask = (1 << SHIFT) - 1;
int pa[maxn];
int label[maxn];
int rk[maxn];
int perm[maxn];
unsigned ans[maxn >> 5];
int cnt[maxc];
unsigned getNext(unsigned &s) {
s = s ^ (s << 13);
s = s ^ (s >> 17);
s = s ^ (s << 5);
return s;
}
int anc(int x) {
return pa[x]<0 ? x : pa[x]=anc(pa[x]);
}
bool join(int x, int y) {
x = anc(x);
y = anc(y);
if (x == y) return false;
if (pa[x] > pa[y])
swap(x, y);
debug(pa[x], pa[y]);
int nrk = (pa[x]==pa[y] ? pa[x]-1 : pa[x]);
pa[y] = x;
pa[x] = nrk;
return true;
}
struct Barret {
using big = __uint128_t;
big R;
int m;
Barret(int t_m) : R((big(1) << 64) / t_m), m(t_m) {}
int reduce(unsigned a) {
unsigned q = (a * R) >> 64;
unsigned r = a - m * q;
return r >= m ? r - m : r;
}
};
void print(int x) {
if (x == 0)
putchar('0');
int stk[20], p = 0;
while (x) {
stk[p++] = x % 10;
x /= 10;
}
while (p) {
putchar(stk[--p] + '0');
}
}
}
signed main() {
// cin.tie(nullptr) -> sync_with_stdio(false);
int n, m;
unsigned init_s;
scanf("%d%d%u", &n, &m, &init_s);
// cin >> n >> m >> init_s;
int shift = 0;
for (int i = 0; i < m; i++)
rk[i] = i;
for (int i = 0; i < m; i++)
perm[i] = i;
for (int t = 0; t < 3; t++) {
unsigned s = init_s;
for (int i = 0; i < m; i++) {
int u = getNext(s);
int v = getNext(s);
long long w = getNext(s) / 4;
w *= getNext(s);
label[i] = w >> shift & mask;
}
orange(perm, perm + m);
orange(label, label + m);
memset(cnt, 0, sizeof(cnt));
// for (int i = 0; i < maxc; i++)
// cnt[i] = 0;
for (int i = 0; i < m; i++)
++cnt[label[i]];
for (int i = 1; i < maxc; i++)
cnt[i] += cnt[i - 1];
for (int i = m - 1; i >= 0; i--) {
rk[perm[i]] = --cnt[label[perm[i]]];
}
for (int i = 0; i < m; i++)
perm[rk[i]] = i;
orange(rk, rk + m);
orange(perm, perm + m);
shift += SHIFT;
}
// DSU init
for (int i = 0; i < n; i++)
pa[i] = -1;
// #define edge_u rk
// #define edge_v label
int *edge_u = rk;
int *edge_v = label;
// vector<long long> edge_w(m);
Barret b(n);
unsigned s = init_s;
for (int i = 0; i < m; i++) {
int u = b.reduce(getNext(s));
int v = b.reduce(getNext(s));
getNext(s);
getNext(s);
// long long w = getNext(s) / 4;
// w *= getNext(s);
edge_u[i] = u;
edge_v[i] = v;
// edge_w[i] = w;
// debug(u, v, w);
}
int cnt = 0;
for (int i = 0; i < m; i++) {
int p = perm[i];
// debug(edge_u[p], edge_v[p], edge_w[p]);
if (join(edge_u[p], edge_v[p])) {
ans[p >> 5] |= 1u << (p % 32);
if (++cnt >= (n - 1) / 2) {
break;
}
}
}
const int L = (m + 31) / 32;
for (int i = 0; i < L; i++) {
print(ans[i]);
if (i+1!=L) putchar(' ');
else putchar('\n');
}
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 15ms
memory: 21860kb
input:
4 7 47
output:
8
result:
ok you found 1 edges (out of 2 edges)
Test #2:
score: 0
Accepted
time: 9ms
memory: 25548kb
input:
1 1 956091059
output:
0
result:
ok you found 0 edges (out of 0 edges)
Test #3:
score: 0
Accepted
time: 14ms
memory: 25932kb
input:
1 10 675265052
output:
0
result:
ok you found 0 edges (out of 0 edges)
Test #4:
score: 0
Accepted
time: 13ms
memory: 24088kb
input:
1 100 649558818
output:
0 0 0 0
result:
ok you found 0 edges (out of 0 edges)
Test #5:
score: 0
Accepted
time: 10ms
memory: 25948kb
input:
1 300 796656507
output:
0 0 0 0 0 0 0 0 0 0
result:
ok you found 0 edges (out of 0 edges)
Test #6:
score: 0
Accepted
time: 13ms
memory: 23988kb
input:
1 1000 570935698
output:
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
result:
ok you found 0 edges (out of 0 edges)
Test #7:
score: 0
Accepted
time: 12ms
memory: 23412kb
input:
1 5000 374761337
output:
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ...
result:
ok you found 0 edges (out of 0 edges)
Test #8:
score: 0
Accepted
time: 15ms
memory: 23788kb
input:
1 10000 705177612
output:
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ...
result:
ok you found 0 edges (out of 0 edges)
Test #9:
score: 0
Accepted
time: 15ms
memory: 26096kb
input:
1 100000 900413157
output:
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ...
result:
ok you found 0 edges (out of 0 edges)
Test #10:
score: 0
Accepted
time: 55ms
memory: 26108kb
input:
1 300000 347539594
output:
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ...
result:
ok you found 0 edges (out of 0 edges)
Test #11:
score: 0
Accepted
time: 264ms
memory: 33944kb
input:
1 1000000 659451863
output:
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ...
result:
ok you found 0 edges (out of 0 edges)
Test #12:
score: 0
Accepted
time: 1189ms
memory: 55704kb
input:
1 3000000 415743523
output:
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ...
result:
ok you found 0 edges (out of 0 edges)
Test #13:
score: -100
Time Limit Exceeded
input:
1 8000000 99180511