이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <stdio.h>
#include <string.h>
#define N 1000
int min(int a, int b) { return a < b ? a : b; }
unsigned int Z = 12345;
int rand_() {
return (Z *= 3) >> 1;
}
int n, m; double p;
int query(int *ii, int k) {
static char cc[N + 1], s[2];
int h;
memset(cc, '0', n * sizeof *cc);
for (h = 0; h < k; h++)
cc[ii[h]] = '1';
printf("Q %s\n", cc), fflush(stdout);
scanf("%s", s);
return s[0] == 'P';
}
void shuffle(int *ii, int n) {
int h, h_, tmp;
for (h = 0; h < n; h++) {
h_ = rand_() % (h + 1);
tmp = ii[h], ii[h] = ii[h_], ii[h_] = tmp;
}
}
int main() {
int t, subtask;
scanf("%d%lf%d", &n, &p, &t), m = 1 / p, subtask = t == 1 ? 1 : 2;
while (t--) {
static char cc[N + 1];
static int ii[N];
int n_, n__, h, i, l, r, lower, upper;
memset(cc, '0', n * sizeof *cc), cc[n] = 0;
if (subtask == 1) {
for (i = 0; i < n; i++) {
ii[0] = i;
if (query(ii, 1))
cc[i] = '1';
}
} else {
n_ = 0;
for (i = 0; i < n; i++)
ii[n_++] = i;
while (n_ > 0) {
shuffle(ii, n_);
n__ = 0;
for (l = 0; l + m <= n_; l += m) {
r = min(l + m, n_);
if (query(ii + l, r - l)) {
lower = l, upper = r;
while (upper - lower > 1) {
h = (lower + upper) / 2;
if (query(ii + l, h - l))
upper = h;
else
lower = h;
}
cc[ii[lower]] = '1';
for (h = lower + 1; h < r; h++)
ii[n__++] = ii[h];
}
}
n_ = n__;
}
}
printf("A %s\n", cc), fflush(stdout);
scanf("%*s");
}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
Main.c: In function 'query':
Main.c:24:2: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
24 | scanf("%s", s);
| ^~~~~~~~~~~~~~
Main.c: In function 'main':
Main.c:40:2: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
40 | scanf("%d%lf%d", &n, &p, &t), m = 1 / p, subtask = t == 1 ? 1 : 2;
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
Main.c:80:3: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
80 | scanf("%*s");
| ^~~~~~~~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |