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

Turbo

Gold IV 골드 IV
난이도
1s
시간 제한
32MB
메모리 제한
1
맞았습니다!!
2
제출 수
50.0%
정답률
레이팅

의견: 0

설명

Frane has been given the task of sorting an array of numbers. The array consists of \(N\) integers, each between \(1\) and \(N\) (inclusive), with each of those appearing exactly once in the array. Frane has come up with the following sorting algorithm which operates in \(N\) phases, and named it turbosort:

  • In the first phase, the number \(1\) is moved to position \(1\) by repeatedly swapping consecutive elements.
  • In the second phase, the number \(N\) is moved to position \(N\) in the same manner.
  • In the third phase, the number \(2\) is moved to position \(2\).
  • In the fourth phase, the number \(N-1\) is moved to position \(N-1\).
  • And so on.

In other words, when the number of the phase is odd, Frane will choose the smallest number not yet chosen, and move it to its final position. In even phases he chooses the largest number not yet chosen.

Write a program which, given the initial array, outputs the number of swaps in each phase of the algorithm.

제약
입력 형식

The first line contains an integer \(N\) (\(1 \le N \le 100\,000\)), the number of elements in the array.

Each of the following \(N\) lines contains an integer between \(1\) and \(N\) (inclusive), the array to be sorted. The array will contain no duplicates.

출력 형식

For each of the \(N\) phases, output the number of swaps on a single line.

Scoring: In test cases worth \(70\%\) of points, \(N\) will be less than \(100\).

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

Subtask 1

70점
예제 1
입력
3
2
1
3
출력
1
0
0
예제 2
입력
5
5
4
3
2
1
출력
4
3
2
1
0
예제 3
입력
7
5
4
3
7
1
2
6
출력
4
2
3
0
2
1
0
문제 정보

riseoj 작성

출처 COCI 2007/2008 Contest 2

평가 및 의견

Turbo

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

Log in to rate problems.

개별 의견

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

풀이 제출

Turbo

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