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

S1. Hat Circle

Unrated 레이팅 미적용
난이도
2s
시간 제한
256MB
메모리 제한
0
맞았습니다!!
0
제출 수
0.0%
정답률
레이팅

의견: 0

설명

At a recent social gathering, \(N\)
people sit around a circular table, where \(N\) is even. The seats are numbered
clockwise from \(1\) to \(N\). Each person is wearing a hat with a
number on it. Specifically, the person at seat \(i\) is wearing a hat with the number \(H_i\) on it.

Each person looks at the person who is directly across (diametrically
opposite) them in the circle.

Determine the number of people who see someone with a hat with the
same number as their own.

제약
입력 형식

The first line of input will consist of one even positive integer
\(N\), representing the number of
people at the social gathering.

The next \(N\) lines each contain a
single non-negative integer \(H_i\),
representing the hat number of person \(i\).

출력 형식

Output a single integer representing the number of people who see
their hat number on the person directly across from them.

서브태스크
서브태스크점수설명

1

13점

Very small number of people; only two hat numbers — \(N \le 4\)\(H_i \leq 1\)

2

6점

Only one hat number — \(N \le 100\)\(H_i = 1\)

3

13점

People in even numbered seats have hat number 1; people in odd numbered seats have hat number 0 — \(N \le 100\)\(H_i \leq 1\)

4

34점

Medium number of people — \(N \le 2\,000\)\(H_i \leq 4\,000\)

5

34점

Large number of people and hat numbers — \(N \le 1\,000\,000\)\(H_i \le 2\,000\,000\)

예제 1
입력
4
0
1
0
1
출력
4
설명

The four seats around the table are shown below. Hat numbers are
shown inside each seat and seat numbers are shown beside each seat.

Notice that every person sees their hat number. The people in seats
\(1\) and \(3\) both see hat number \(0\), and the people in seats \(2\) and \(4\) both see hat number \(1\).

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

The four seats around the table are shown below. Hat numbers are
shown inside each seat and seat numbers are shown beside each seat.

Notice that no person sees their hat number. The people in seats \(1\) and \(4\) both see hat number \(0\), and the people in seats \(2\) and \(3\) both see hat number \(1\).

문제 정보

생성자가 기록되지 않았습니다.

출처 CCC 2024 Senior

평가 및 의견

S1. Hat Circle

개요
출제자 난이도 Unrated 레이팅 미적용 의견 0 / 50 공개 집계 (커뮤니티 난이도, 주요 주제, 품질)는 의견이 충분히 모이면 공개됩니다.

Log in to rate problems.

개별 의견

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

풀이 제출

S1. Hat Circle

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