| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1058251 | kachim2 | Bikeparking (EGOI24_bikeparking) | C++17 | 1094 ms | 4956 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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 time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
