RiseOJ는 solved.ac와 제휴 관계가 없습니다. 티어 아이콘 © solved.ac. solved.ac
포럼
USACO0462

Comfortable Cows

Silver II 실버 II
난이도
2s
시간 제한
256MB
메모리 제한
0
맞았습니다!!
0
제출 수
0.0%
정답률
레이팅

의견: 0

설명

Farmer Nhoj's pasture can be regarded as a large 2D grid of square "cells"
(picture a huge chessboard). Initially, the pasture is empty.

Farmer Nhoj will add \(N\) (\(1\le N\le 10^5\)) cows to the pasture one by one. The
\(i\)th cow will occupy a cell \((x_i,y_i)\) that is distinct from the cells
occupied by all other cows (\(0\le x_i,y_i\le 1000\)).

A cow is said to be "comfortable" if it is horizontally or vertically adjacent
to exactly three other cows. Unfortunately, cows that are too comfortable tend
to lag in their milk production, so Farmer Nhoj wants to add additional cows
until no cow (including the ones that he adds) is comfortable. Note that the
added cows do not necessarily need to have \(x\) and \(y\) coordinates in the range
\(0 \ldots 1000\).

For each \(i\) in the range \(1 \ldots N\), please output the minimum number of
cows Farmer Nhoj would need to add until no cows are comfortable if initially,
the pasture started with only cows \(1\ldots i\).

Problem credits: Benjamin Qi

제약

Problem credits: Benjamin Qi

입력 형식

The first line contains a single integer \(N\). Each of the next \(N\) lines
contains two space-separated integers, indicating the \((x,y)\) coordinates of a
cow's cell.

출력 형식

The minimum number of cows Farmer Nhoj needs to add for each \(i\) in
\(1 \ldots N\), on \(N\) separate lines.

예제 1
입력
9
0 1
1 0
1 1
1 2
2 1
2 2
3 1
3 2
4 1
출력
0
0
0
1
0
0
1
2
4
설명

For \(i=4\), Farmer Nhoj must add an additional cow at \((2,1)\) to make the cow at
\((1,1)\) uncomfortable.

For \(i=9\), the best Farmer Nhoj can do is place additional cows at \((2,0)\),
\((3,0)\), \((2,-1)\), and \((2,3)\).

문제 정보

riseoj 작성

출처 올림피아드 > USACO > 2020-2021 > February > Silver

태그

평가 및 의견

Comfortable Cows

개요
출제자 난이도 Silver II 실버 II 의견 0 / 50 공개 집계 (커뮤니티 난이도, 주요 주제, 품질)는 의견이 충분히 모이면 공개됩니다.

Log in to rate problems.

개별 의견

아직 의견이 없습니다. 자격이 된다면 위 양식에서 가장 먼저 평가해 보세요.

풀이 제출

Comfortable Cows

게스트로 둘러보고 있습니다. 로그인하면 풀이를 제출하고 진행 상황을 확인할 수 있습니다. 로그인하고 제출하기
공개
C++20 Tab 들여쓰기 · Ctrl+/ 주석 토글 · Enter 자동 들여쓰기
1 1 1 0 공백: 4 · UTF-8