# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
94583 | FutymyClone | Walking (NOI12_walking) | C++14 | 2 ms | 504 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
const int N = 505;
int l, n, dp[N];
pair <int, int> a[N];
int main(){
scanf("%d %d", &l, &n);
for (int i = 1; i <= n; i++) scanf("%d %d", &a[i].first, &a[i].second);
sort(a + 1, a + n + 1);
for (int i = n; i >= 1; i--) {
dp[i] = 1;
for (int j = i + 1; j <= n; j++) {
if (l * a[j].second + a[i].first * a[i].second * a[j].second > l * a[i].second + a[j].first * a[i].second * a[j].second) dp[i] = max(dp[i], dp[j] + 1);
}
}
printf("%d", *max_element(dp + 1, dp + n + 1));
return 0;
}
Compilation message (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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |