본문 바로가기

백준

14719 빗물

 

#include <iostream>
#include <algorithm>
#include <vector>
#include <string>
#include <functional>
#include <string>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <cmath>
#include <cstring>
#include <bitset>

#define xx first
#define yy second
#define all(x) (x).begin(), (x).end()
#define MAXV 1000000

using namespace std;
using i64 = long long int;
using ii = pair<int, int>;
using ii64 = pair<i64, i64>;
using iii = tuple<int, int, int>;

int     main()
{
    int h, w;
    scanf("%d %d", &h, &w);

    vector<int> v(w);
    for (int i = 0; i < w; i++)
        scanf("%d", &v[i]);

    int pre = v[0];
    int tmp = 0;
    int sumv = 0;

    for (int i = 1; i < w; i++)
    {
        if (pre <= v[i])
        {
            pre = v[i];
            sumv += tmp;
            tmp = 0;
        }
        tmp += pre - v[i];
    }

    pre = v[w - 1];
    tmp = 0;
    for (int i = w - 2; i >= 0; i--)
    {
        if (pre < v[i])
        {
            pre = v[i];
            sumv += tmp;
            tmp = 0;
        }
        tmp += pre - v[i];
    }

    printf("%d\n", sumv);

    return 0;
}

 

'백준' 카테고리의 다른 글

2799 블라인드  (0) 2020.10.29
11947 이런 반전이  (0) 2020.10.27
2133 타일 채우기  (0) 2020.10.25
11054 가장 긴 바이토닉 부분 수열  (0) 2020.10.25
11722 가장 긴 감소하는 부분 수열  (0) 2020.10.25