제출 #1058251

#제출 시각아이디문제언어결과실행 시간메모리
1058251kachim2Bikeparking (EGOI24_bikeparking)C++17
0 / 100
1094 ms4956 KiB
#include<bits/stdc++.h>
using namespace std;
typedef int64_t ll;
int main(){
    ll n;
    cin >> n;
    vector<ll> slots(n);
    vector<ll> users(n);
    for(ll i = 0; i < n; i++){
        cin >> slots[i];
    }
    for(ll i = 0; i < n; i++){
        cin >> users[i];
    }
    ll happy = 0;
    for(ll i = 0; i < n; i++){
        
        for(int j = 0;  j < i; j++){
            ll x= min(slots[j], users[i]);
            slots[j]-=x;
            users[i]-=x;
            happy+=x;
        }

        for(int j = i+1;  j < n; j++){
            ll x= min(slots[j], users[i]);
            slots[j]-=x;
            users[i]-=x;
            happy-=x;
        }
                ll x= min(slots[i], users[i]);
        slots[i]-=x;
        users[i]-=x;
    }
    happy -= accumulate(users.begin(), users.end(), ll(0));
    cout << happy;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...