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

Tests for Haybales

Diamond V 다이아몬드 V
난이도
2s
시간 제한
256MB
메모리 제한
0
맞았습니다!!
0
제출 수
0.0%
정답률
레이팅

의견: 0

설명

Farmer John's cows have decided to offer a programming contest for the cows on
Farmer Nhoj's farm. In order to make the problems as fun as possible, they have
spent considerable time coming up with challenging input cases. For one problem
in particular, "Haybales", the cows need your help devising challenging inputs.
This involve solving the following somewhat intriguing problem:

There is an array of sorted integers \(x_1 \leq x_2 \leq \dotsb \leq x_N\)
(\(1 \leq N \leq 10^5\)), and an integer \(K\). You don't know the array or \(K\), but
you do know for each index \(i\), the largest index \(j_i\) such that
\(x_{j_i} \leq x_i + K\). It is guaranteed that \(i\le j_i\) and
\(j_1\le j_2\le \cdots \le j_N\le N\).

Given this information, Farmer John's cows need to construct any array along
with some integer \(K\) that matches that information. The construction needs to
satisfy \(0 \leq x_i \leq 10^{18}\) for all \(i\) and \(1 \leq K \leq 10^{18}\).

It can be proven that this is always possible. Help Farmer John's cows solve
this problem!

Problem credits: Danny Mittal

제약

SCORING

  • For 50% of all inputs, \(N\le 5000\)
  • For the remaining inputs, there are no additional constraints.

Problem credits: Danny Mittal

입력 형식

The first line of input contains \(N\). The next line contains
\(j_1,j_2,\ldots,j_N\).

출력 형식

Print \(K\), then \(x_1,\ldots,x_N\) on separate lines. Any valid output will be
accepted.

예제 1
입력
6
2 2 4 5 6 6
출력
6
1
6
17
22
27
32
설명

The sample output is the array \(a = [1, 6, 17, 22, 27, 32]\) with \(K = 6\).
\(j_1 = 2\) is satisfied because \(a_2 = 6 \leq 1 + 6 = a_1 + K\) but
\(a_3 = 17 > 1 + 6 = a_1 + K\), so \(a_2\) is the largest element that is at most
\(a_1\). Similarly,

  • \(j_2 = 2\) is satisfied because \(a_2 = 6 \leq 6 + 6\) but \(a_3 = 17 > 6 + 6\)
  • \(j_3 = 4\) is satisfied because \(a_4 = 22 \leq 17 + 6\) but \(a_5 = 27 > 17 + 6\)
  • \(j_4 = 5\) is satisfied because \(a_5 = 27 \leq 22 + 6\) but \(a_5 = 32 > 22 + 6\)
  • \(j_5 = 6\) is satisfied because \(a_6 = 32 \leq 27 + 6\) and \(a_6\) is the last element of the array
  • \(j_6 = 6\) is satisfied because \(a_6 = 32 \leq 32 + 6\) and \(a_6\) is the last element of the array

This is not the only possible correct output for the sample input. For example,
you could instead output the array \([1, 2, 4, 5, 6, 7]\) with \(K = 1\).

문제 정보

riseoj 작성

출처 올림피아드 > USACO > 2021-2022 > January > Gold

태그

평가 및 의견

Tests for Haybales

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

Log in to rate problems.

개별 의견

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

풀이 제출

Tests for Haybales

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