#include using namespace std; #define fst(t) std::get<0>(t) #define snd(t) std::get<1>(t) #define thd(t) std::get<2>(t) #define unless(p) if(!(p)) #define until(p) while(!(p)) using ll = long long; using P = std::tuple; const int dx[8] = {-1, 1, 0, 0, -1, -1, 1, 1}, dy[8] = {0, 0, -1, 1, -1, 1, -1, 1}; int N; int A[110]; queue

que; int at(int idx){ if(idx >= 0){ return A[idx]; } return 0; } int main(){ std::cin.tie(nullptr); std::ios::sync_with_stdio(false); std::cin >> N; for(int i=0;i> A[i]; } for(int i=0;i+1> b >> c; while(b > 0){ int x, y; // xから乗った人y人 tie(x, y) = que.front(); que.pop(); int z = min(y, b); res += z * (at(i - 1) - at(x - 1)); if(y - z > 0){ que.emplace(x, y - z); } b -= z; } que.emplace(i, c); } std::cout << res << std::endl; }