This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
/* https://oi.edu.pl/static/attachment/20140306/oi20.pdf */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define M 2000000
#define N_ 5000001
#define L 60
#define MD 0x7fffffff
long long min(long long a, long long b) { return a < b ? a : b; }
long long max(long long a, long long b) { return a > b ? a : b; }
int X = 123454321;
int k;
long long parse() {
static char cc[L + 1];
int h;
long long x;
scanf("%s", cc);
x = 0;
for (h = 0; h < k; h++)
if (cc[h] == '1')
x |= 1LL << h;
return x;
}
long long *ek[M]; int eo[M];
char *ev[M];
int hash(long long k) {
int kl = k / MD, kr = k % MD;
return ((long long) kl * X % MD + kr) * X % MD % M;
}
int ht_add(long long k, int v) {
int h = hash(k), o;
for (o = eo[h]; o--; )
if (ek[h][o] == k) {
if (ev[h][o] == (v ^ 1)) {
printf("TAK\n");
exit(0);
}
return 0;
}
o = eo[h]++;
if (o == 0) {
ek[h] = (long long *) malloc(2 * sizeof *ek[h]);
ev[h] = (char *) malloc(2 * sizeof *ev[h]);
} else if (o >= 2 && (o & o - 1) == 0) {
ek[h] = (long long *) realloc(ek[h], o * 2 * sizeof *ek[h]);
ev[h] = (char *) realloc(ev[h], o * 2 * sizeof *ev[h]);
}
ek[h][o] = k, ev[h][o] = v;
return 1;
}
int bfs(long long s, int cnt_, int v) {
static long long qu[N_];
int cnt, g, h;
long long b, b_;
cnt = 0;
ht_add(s, v), qu[cnt++] = s;
for (g = 0; g < cnt; g++) {
b = qu[g];
for (h = 0; h < k; h++) {
b_ = b ^ 1LL << h;
if (ht_add(b_, v)) {
qu[cnt++] = b_;
if (cnt == cnt_)
return 1;
}
}
}
return 0;
}
int main() {
int n, i;
long long s, t;
scanf("%d%d", &k, &n), s = parse(), t = parse();
if (s == t) {
printf("TAK\n");
return 0;
}
for (i = 0; i < n; i++)
ht_add(parse(), -1);
ht_add(s, 0), ht_add(t, 1);
printf(bfs(s, n * k + 1, 0) && bfs(t, n * k + 1, 1) ? "TAK\n" : "NIE\n");
return 0;
}
Compilation message (stderr)
spa.c: In function 'ht_add':
spa.c:55:30: warning: suggest parentheses around '-' in operand of '&' [-Wparentheses]
55 | } else if (o >= 2 && (o & o - 1) == 0) {
| ~~^~~
spa.c: In function 'parse':
spa.c:23:2: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
23 | scanf("%s", cc);
| ^~~~~~~~~~~~~~~
spa.c: In function 'main':
spa.c:88:2: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
88 | scanf("%d%d", &k, &n), s = parse(), t = parse();
| ^~~~~~~~~~~~~~~~~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |