티스토리 뷰
처음에 문제 이해를 잘못했다
문제는 첫번째칸에 가장 큰 수를 만들라는 문제다
그럼 거리를 보고 만약 다른칸에 수가 0이 아니라면 그만큼 옴기면 된다!
소스코드
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#include <iostream>
#include <algorithm>
#include <string>
#include <cstring>
using namespace std;
int arr[111];
int ans;
int main() {
int t; scanf(" %d", &t);
while (t--) {
memset(arr, 0, sizeof(arr));
int n, m; scanf(" %d %d", &n, &m); ans = 0;
for (int i = 0; i < n; i++) scanf(" %d", &arr[i]);
for (int i = 1; i < n; i++) {
if (!arr[i]) continue;
while (m >= i && arr[i]) {
arr[i]--;
ans +=1 ; m -= i;
}
}
printf("%d\n", ans+arr[0]);
}
}
|
'알고리즘 > Codeforces' 카테고리의 다른 글
R621(Div.1+Div.2) C. Cow and Message (0) | 2020.02.19 |
---|---|
R621(Div.1+Div.2) B. Cow and Friend (0) | 2020.02.19 |
R620(Div.2) D. Shortest and Longest LIS (0) | 2020.02.18 |
Edu82(Div.2) D. Fill The Bag (0) | 2020.02.16 |
R620(Div.2) C.Air Conditioner (0) | 2020.02.16 |
댓글