# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
157318 | 2019-10-10T16:14:13 Z | karma | 스트랩 (JOI14_straps) | C++14 | 38 ms | 16088 KB |
#include<bits/stdc++.h> #define FileName "test" #define ll long long #define pb emplace_back #define deg first #define c second using namespace std; typedef pair<int, int> pii; const int N = int(2e3) + 2; const int oo = int(2e9) + 7; int f[N][N], Max[N], PMax[N], a[N]; int n, m, res = 0, pre; pii val[N]; int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); if(fopen(FileName".inp", "r")) { freopen(FileName".inp", "r", stdin); freopen(FileName".out", "w", stdout); } cin >> n; m = n + 1; for(int i = 1; i <= n; ++i) { cin >> val[i].deg >> val[i].c; fill(f[i], f[i] + m + 1, -oo); } sort(val + 1, val + n + 1, [](const pii& x, const pii& y) { return x.deg > y.deg; }); fill(Max, Max + m + 1, -oo); fill(PMax, PMax + m + 1, -oo); f[0][1] = 0; PMax[0] = PMax[1] = Max[1] = 0; for(int i = 1; i <= n; ++i) { for(int j = 0; j < m; ++j) { pre = j + 1 - val[i].deg; if(pre < 0 || Max[pre] == -oo) continue; res = max(res, (f[i][j] = Max[pre] + val[i].c)); } pre = m + 1 - val[i].deg; if(PMax[pre] != -oo) res = max(res, (f[i][m] = PMax[pre] + val[i].c)); for(int j = 0; j <= m; ++j) Max[j] = max(Max[j], f[i][j]); for(int j = m; j >= 0; --j) PMax[j] = max(PMax[j + 1], Max[j]); } cout << res; } ///4375336
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 376 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 376 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 632 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 38 ms | 16088 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |