# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
886664 | vjudge1 | Gym Badges (NOI22_gymbadges) | C++17 | 321 ms | 16724 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define int long long int
#define MP make_pair
#define REP(i,n) for(int (i) = 0; (i)<(n); (i)++)
#define pb push_back
const int N = 5e3+5;
const int MOD = 1e9+7;
const int INF = 1e17;
using namespace std;
void fastio() {
ios_base::sync_with_stdio(0);
cin.tie(NULL);
}
int n,m,q;
vector<int> dp(N, INF), dpnew(N, INF);
vector<int> L, X;
void solve() {
cin>>n;
L.assign(n+1, 0);
X.assign(n+1, 0);
REP(i,n) cin>>X[i + 1];
REP(i,n) cin>>L[i + 1];
dp[0] = 0;
for(int i = 1; i<=n; i++) {
for(int j = 0; j<=n; j++) {
dpnew[j] = INF;
if(j > 0 && dp[j - 1] <= L[i]) {
dpnew[j] = min(dpnew[j], dp[j - 1] + X[i]);
}
if(dp[j] <= L[i]) {
dpnew[j] = min(dpnew[j], dp[j]);
}
}
swap(dp, dpnew);
}
// for(int i = 0; i<=n; i++) {
// cout<<dp[i]<<" ";
// }
// cout<<"\n";
for(int i = n; i>=0; i--) {
if(dp[i] < INF) {
cout<<i<<"\n";
return;
}
}
}
signed main() {
// fastio();
solve();
}
컴파일 시 표준 에러 (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... |