# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
71081 | Inovak | Long Distance Coach (JOI17_coach) | C++14 | 4 ms | 464 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define fr first
#define sc second
#define pb push_back
#define mk make_pair
#define ll long long
#define OK puts("OK");
#define sz(s) (int)s.size()
#define all(s) s.begin(), s.end()
using namespace std;
const int N = 2e5+10;
const ll inf = 1e18+10;
ll x, n, m, w, t, ans;
ll s[N];
pair <ll, ll> p[N];
bool u[N];
int main() {
cin >> x >> n >> m >> w >> t;
for(int i = 1; i <= n; i++)
scanf("%lld", &s[i]);
for(int i = 1; i <= m; i++) {
scanf("%lld%d", &p[i].fr, &p[i].sc);
if(x > p[i].fr) {
ll xx = x - p[i].fr;
ans += w * ((xx / t) + 1);
}
}
ans += w * ((x / t) + 1);
sort(p + 1, p + m + 1);
sort(s + 1, s + n + 1);
p[++m] = mk(t, inf);
s[++n] = x;
for(int i = 1; i <= n; i++) {
ll xx = s[i] % t, yy = s[i] / t;
for(int j = m; j >= 1; j--) {
if(u[j] || xx < p[j].fr) continue;
if(p[j].sc > w * (((x - p[j].fr) / t) + 1 - yy)) break;
u[j] = 1;
ans -= w * (((x - p[j].fr) / t) + 1 - yy);
ans += p[j].sc;
}
}
cout << ans << endl;
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |