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

Square Pasture

Platinum I 플래티넘 I
난이도
2s
시간 제한
256MB
메모리 제한
0
맞았습니다!!
0
제출 수
0.0%
정답률
레이팅

의견: 0

설명

Farmer John's largest pasture can be regarded as a large 2D grid of square
"cells" (picture a huge chess board). Currently, there are \(N\) cows occupying
some of these cells (\(1 \leq N \leq 200\)).

Farmer John wants to build a fence that will enclose a square region of cells;
the square must be oriented so its sides are parallel with the \(x\) and \(y\)
axes, and it could be as small as a single cell. Please help him count the
number of distinct subsets of cows that he can enclose in such a region. Note
that the empty subset should be counted as one of these.

Problem credits: Benjamin Qi

제약

SCORING

  • In test cases 1-5, all coordinates of cells containing cows are less than \(20\).
  • In test cases 6-10, \(N\le 20\).
  • In test cases 11-20, there are no additional constraints.

Problem credits: Benjamin Qi

입력 형식

The first line contains a single integer \(N\). Each of the next \(N\) lines Each
of the next \(N\) lines contains two space-separated integers, indicating the
\((x,y)\) coordinates of a cow's cell. All \(x\) coordinates are distinct from
each-other, and all \(y\) coordinates are distinct from each-other. All \(x\) and
\(y\) values lie in the range \(0 \ldots 10^9\).

출력 형식

The number of subsets of cows that FJ can fence off. It can be shown that this
quantity fits within a signed 32-bit integer.

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

In this example, there are \(2^4\) subsets in total. FJ cannot create a fence enclosing only cows 1
and 3, or only cows 2 and 4, so the answer is \(2^4-2=16-2=14\).

예제 2
입력
16
17 4
16 13
0 15
1 19
7 11
3 17
6 16
18 9
15 6
11 7
10 8
2 1
12 0
5 18
14 5
13 2
출력
420
문제 정보

riseoj 작성

출처 올림피아드 > USACO > 2020-2021 > December > Gold

태그

평가 및 의견

Square Pasture

개요
출제자 난이도 Platinum I 플래티넘 I 의견 0 / 50 공개 집계 (커뮤니티 난이도, 주요 주제, 품질)는 의견이 충분히 모이면 공개됩니다.

Log in to rate problems.

개별 의견

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

풀이 제출

Square Pasture

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