# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
927596 |
2024-02-15T06:59:27 Z |
IBory |
코알라 (JOI13_koala) |
C++17 |
|
2000 ms |
3872 KB |
#include <bits/stdc++.h>
#define pii pair<ll, ll>
typedef long long ll;
using namespace std;
const int MAX = 100007;
ll P[MAX], B[MAX], dp[MAX];
int main() {
ios::sync_with_stdio(0); cin.tie(0);
ll SP, EP, D, A, N;
cin >> SP >> EP >> D >> A >> N;
for (int i = 1; i <= N; ++i) cin >> P[i] >> B[i];
P[0] = SP, P[N + 1] = EP;
fill(dp + 1, dp + MAX, -1LL * 1E15);
map<ll, ll> pv;
pv[P[0] % D] = 0;
for (int i = 1; i <= N + 1; ++i) {
for (auto [_, p] : pv) dp[i] = max(dp[i], dp[p] - (P[i] - P[p] + D - 1) / D * A);
dp[i] += B[i];
pv[P[i] % D] = i;
}
// for (int i = 1; i <= N + 1; ++i) {
// for (int j = 0; j < i; ++j) dp[i] = max(dp[i], dp[j] - (P[i] - P[j] + D - 1) / D * A);
// dp[i] += B[i];
// }
cout << dp[N + 1] << '\n';
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
3 ms |
2648 KB |
Output is correct |
2 |
Correct |
3 ms |
2652 KB |
Output is correct |
3 |
Correct |
3 ms |
2652 KB |
Output is correct |
4 |
Correct |
1 ms |
2652 KB |
Output is correct |
5 |
Correct |
1 ms |
2648 KB |
Output is correct |
6 |
Correct |
1 ms |
2652 KB |
Output is correct |
7 |
Incorrect |
1 ms |
2652 KB |
Output isn't correct |
8 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
80 ms |
2652 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
2021 ms |
3872 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |