# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
68418 | BThero | Semiexpress (JOI17_semiexpress) | C++17 | 1073 ms | 692 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// Why I am so dumb? :c
#include <bits/stdc++.h>
#define pb push_back
#define mp make_pair
#define all(x) (x).begin(), (x).end()
#define fi first
#define se second
using namespace std;
typedef long long ll;
const int MAXN = (int)3e2 + 5;
int reach[MAXN];
ll dist[MAXN];
int arr[MAXN];
int n, m, k;
ll a, b, c;
int ans;
ll lim;
void solve() {
scanf("%d %d %d", &n, &m, &k);
scanf("%lld %lld %lld", &a, &b, &c);
scanf("%lld", &lim);
for (int i = 1; i <= m; ++i) {
scanf("%d", &arr[i]);
}
for (int i = 1; i <= m; ++i) {
dist[i] = (arr[i] - 1) * b;
if (dist[i] > lim) {
continue;
}
if (i > 1) {
++ans;
}
reach[i] = arr[i];
for (int x = arr[i] + 1; x < arr[i + 1]; ++x) {
if (dist[i] + (x - arr[i]) * a <= lim) {
reach[i] = x;
}
}
}
for (int i = 1; i <= k - m; ++i) {
pair<int, int> mx = mp(-1, -1);
for (int j = 1; j < m; ++j) {
if (dist[j] > lim) {
continue;
}
// try putting express at reach[j] + 1
int cnt = 0;
int id = reach[j] + 1;
for (int x = id; x < arr[j + 1]; ++x) {
if (dist[j] + (id - arr[j]) * c + (x - id) * a <= lim) {
++cnt;
}
}
mx = max(mx, mp(cnt, j));
}
if (mx.se == -1) {
break;
}
reach[mx.se] += mx.fi;
}
for (int i = 1; i < m; ++i) {
if (dist[i] > lim) {
continue;
}
ans += (reach[i] - arr[i]);
}
printf("%d\n", ans);
}
int main() {
int tt = 1;
while (tt--) {
solve();
}
return 0;
}
컴파일 시 표준 에러 (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... |