# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
944556 |
2024-03-12T23:18:09 Z |
rainboy |
수족관 2 (KOI13_aqua2) |
C |
|
72 ms |
6040 KB |
#include <stdio.h>
#define N 150000
double max(double a, double b) { return a > b ? a : b; }
int main() {
static int xx[N + 1], yy[N], ll[N], rr[N], pp[N], qu[N], dd[N], kk[N];
static double tt[N];
int n, k, cnt, i, j, lower, upper, x;
long long area;
scanf("%d%*d%*d", &n), n = n / 2 - 1;
xx[0] = 0;
for (i = 0; i < n; i++)
scanf("%*d%*d%d%d", &xx[i + 1], &yy[i]);
scanf("%*d%*d");
cnt = 0;
for (i = 0; i < n; i++) {
while (cnt && yy[qu[cnt - 1]] > yy[i])
cnt--;
ll[i] = cnt == 0 ? -1 : qu[cnt - 1];
qu[cnt++] = i;
}
cnt = 0;
for (i = n - 1; i >= 0; i--) {
while (cnt && yy[qu[cnt - 1]] >= yy[i])
cnt--;
rr[i] = cnt == 0 ? n : qu[cnt - 1];
qu[cnt++] = i;
}
for (i = 0; i < n; i++) {
pp[i] = rr[i] == n || ll[i] != -1 && yy[ll[i]] > yy[rr[i]] ? ll[i] : rr[i];
if (pp[i] != -1)
dd[pp[i]]++;
}
scanf("%d", &k);
while (k--) {
scanf("%d%*d%*d%*d", &x);
lower = 0, upper = n;
while (upper - lower > 1) {
i = (lower + upper) / 2;
if (xx[i] <= x)
lower = i;
else
upper = i;
}
kk[lower]++;
}
for (i = 0; i < n; i++) {
j = i;
while (dd[j] == 0) {
if (kk[j] > 0)
tt[j] += (double) (xx[rr[i]] - xx[ll[i] + 1]) * (yy[i] - (pp[i] == -1 ? 0 : yy[pp[i]])) / kk[i];
dd[j] = -1, kk[pp[j]] += kk[j], tt[pp[j]] = max(tt[pp[j]], tt[j]), dd[pp[j]]--, j = pp[j];
}
}
for (i = 0; i < n; i++)
if (pp[i] == -1) {
printf("%.2f\n", tt[i]);
break;
}
area = 0;
for (i = 0; i < n; i++)
if (kk[i] == 0)
area += (long long) (xx[rr[i]] - xx[ll[i] + 1]) * (yy[i] - (pp[i] == -1 ? 0 : yy[pp[i]]));
printf("%lld\n", area);
return 0;
}
Compilation message
aqua2.c: In function 'main':
aqua2.c:33:37: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
33 | pp[i] = rr[i] == n || ll[i] != -1 && yy[ll[i]] > yy[rr[i]] ? ll[i] : rr[i];
| ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
aqua2.c:13:2: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
13 | scanf("%d%*d%*d", &n), n = n / 2 - 1;
| ^~~~~~~~~~~~~~~~~~~~~
aqua2.c:16:3: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
16 | scanf("%*d%*d%d%d", &xx[i + 1], &yy[i]);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
aqua2.c:17:2: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
17 | scanf("%*d%*d");
| ^~~~~~~~~~~~~~~
aqua2.c:37:2: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
37 | scanf("%d", &k);
| ^~~~~~~~~~~~~~~
aqua2.c:39:3: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
39 | scanf("%d%*d%*d%*d", &x);
| ^~~~~~~~~~~~~~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
4444 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
4440 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
4444 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
72 ms |
6040 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |