QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#732416 | #8768. Arrested Development | jiujiu# | WA | 0ms | 3624kb | C++20 | 566b | 2024-11-10 14:28:22 | 2024-11-10 14:28:25 |
Judging History
answer
#include<bits/stdc++.h>
#define int long long
#define IOS ios::sync_with_stdio(0);cin.tie(0);cout.tie(0)
using namespace std;
int t,n,m,x,y;
signed main() {
IOS;
cin>>n;
int N=5e3+1;
vector<int> a(N+1,1e9);
a[0]=0;
for(int i=1;i<=n;i++) {
cin>>x>>y;
for(int j=N;j>=0;j--) {
if(j+x<=N)
a[j+x]=min(a[j],a[j+x]);
a[j]=a[j]+y;
}
}
int ans=INT_MAX;
for(int i=0;i<=N;i++) {
ans=min(ans,a[i]+i);
}
cout<<ans<<"\n";
return 0;
}
詳細信息
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3624kb
input:
4 100 1 1 90 1 20 1 20
output:
4
result:
wrong answer 1st lines differ - expected: '3', found: '4'