RiseOJ는 solved.ac와 제휴 관계가 없습니다. 티어 아이콘 © solved.ac. solved.ac
포럼
USACO0206 파일 입출력

Counting Haybales

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

의견: 0

설명

Farmer John is trying to hire contractors to help rearrange his farm, but so far
all of them have quit when they saw the complicated sequence of instructions FJ
wanted them to follow. Left to complete the project by himself, he realizes
that indeed, he has made the project perhaps more complicated than necessary.
Please help him follow his instructions to complete the farm upgrade.

FJ's farm consists of \(N\) fields in a row, conveniently numbered \(1 \ldots N\).
In each field there can be any number of haybales. Farmer John's instructions
contain three types of entries:

1) Given a contiguous interval of fields, add a new haybale to each field.

2) Given a contiguous interval of fields, determine the minimum number of
haybales in a field within that interval.

3) Given a contiguous interval of fields, count the total number of haybales
inside that interval.

Problem credits: Nick Wu

제약

Problem credits: Nick Wu

입력 형식

The first line contains two positive integers, \(N\) (\(1 \leq N \leq 200,000\)) and
\(Q\) (\(1 \leq Q \leq 100,000\)).

The next line contains \(N\) nonnegative integers, each at most 100,000,
indicating how many haybales are initially in each field.

Each of the next \(Q\) lines contains a single uppercase letter, either M, P or S,
followed by either two positive integers \(A\) and \(B\) (\(1 \leq A \leq B \leq N\)),
or three positive integers \(A\), \(B\), and \(C\) (\(1 \leq A \leq B \leq N\);
\(1 \leq C \leq 100,000\)). There will be three positive integers if and only if
the uppercase letter is P.

If the letter is M, print the minimum number of haybales in the interval of fields
from \(A \ldots B\).

If the letter is P, put \(C\) new haybales in each field in the interval of fields
from \(A \ldots B\).

If the letter is S, print the total number of haybales found within interval of
fields from \(A \ldots B\).

출력 형식

A line in the output should appear in response to every 'M' or 'S' entry in FJ's
instructions.

파일 입력 / 출력
이 문제는 표준 입출력을 사용하지 않습니다. 프로그램은 다음 파일을 읽고 써야 합니다:
입력을 읽을 파일 haybales.in
출력을 쓸 파일 haybales.out
예제 1
입력
4 5
3 1 2 4
M 3 4
S 1 3
P 2 3 1
M 3 4
S 1 3
출력
2
6
3
8
문제 정보

riseoj 작성

출처 올림피아드 > USACO > 2015-2016 > December > Platinum

태그

평가 및 의견

Counting Haybales

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

Log in to rate problems.

개별 의견

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

풀이 제출

Counting Haybales

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