# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
28449 | ㅁㄴㅇㄹ호 (#68) | Oriental P.A.D.A.K (FXCUP2_padak) | C++14 | 399 ms | 13816 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <stdio.h>
#include <cstdlib>
#include <cstring>
#include <algorithm>
#include <numeric>
#include <string>
#include <vector>
#include <tuple>
using namespace std;
int qx[1000000];
int qy[1000000];
bool chk[1000000];
int arr[1000000];
int dx[4] = { 1, 0, -1, 0 };
int dy[4] = { 0, 1, 0, -1 };
int main()
{
//freopen("in", "r", stdin);
//freopen("out", "w", stdout);
int n, m, k, z, x, y, nx, ny, s, c, i, j;
scanf("%d%d%d%*d%d", &n, &m, &k, &z);
int as = 0;
int qs = 0, qg = 0;
const int siz = 1000000;
for(i = 0; i<k; i++)
{
scanf("%d%d", &x, &y);
x--;
y--;
if(chk[x*m + y])
continue;
chk[x*m + y] = 1;
qx[qg%siz] = x;
qy[qg%siz] = y;
qg++;
}
for(c = 1; qs < qg; c++)
{
s = qg - qs;
for(i = 0; i<s; i++)
{
x = qx[qs%siz];
y = qy[qs%siz];
qs++;
for(j = 0; j<4; j++)
{
nx = x + dx[j];
ny = y + dy[j];
if(nx<0 || nx>=n || ny<0 || ny>=m || chk[nx*m + ny])
continue;
chk[nx*m + ny] = 1;
arr[as++] = c;
qx[qg%siz] = nx;
qy[qg%siz] = ny;
qg++;
}
}
}
sort(arr, arr + as);
int r1 = 0, r2 = 0;
int p = 0;
for(i = 1;; i++)
{
while(p != as && arr[p] < i)
p++;
if(p == as)
break;
r1 += min(z, as - p);
p += min(z, as - p);
}
p = as - 1;
for(i = 1;; i++)
{
for(j = 0; j<z; j++)
{
if(p == -1 || arr[p] < i)
break;
r2++;
p--;
}
if(p == -1 || arr[p] < i)
break;
}
printf("%d %d\n", r2, r1);
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |