# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
638720 | jamezzz | Let's Win the Election (JOI22_ho_t3) | C++17 | 478 ms | 4272 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define fi first
#define se second
#define sf scanf
#define pf printf
typedef long long ll;
typedef long double ld;
typedef pair<int,int> ii;
#define maxn 505
#define INF 1023456789
int n,k,a[maxn],b[maxn];
vector<ii> v;
ld memo[maxn][maxn];
int main(){
sf("%d%d",&n,&k);
for(int i=0;i<n;++i){
int x,y;
sf("%d%d",&x,&y);
if(y==-1)y=INF;
v.push_back({x,y});
}
sort(v.begin(),v.end(),[](ii &a,ii &b){
if(a.se==b.se)return a.fi>b.fi;
else return a.se<b.se;
});
for(int i=0;i<n;++i){
tie(a[i],b[i])=v[i];
}
for(int i=0;i<=n+1;++i){
for(int j=0;j<=n+1;++j){
memo[i][j]=INF;
}
}
memo[0][0]=0;
for(int pos=0;pos<n;++pos){
for(int ppl=pos+1;ppl>=0;--ppl){
for(int vote=pos+1;vote>=0;--vote){
ld ans=memo[ppl][vote];
if(vote!=0)ans=min(ans,memo[ppl][vote-1]+(ld)a[pos]/(ppl+1));
if(vote!=0&&ppl!=0&&b[pos]<=1000){
ans=min(ans,memo[ppl-1][vote-1]+(ld)b[pos]/ppl);
}
if(ppl>vote&&ans!=INF)assert(false);
memo[ppl][vote]=ans;
}
}
}
ld ans=INF;
for(int i=0;i<=n;++i)ans=min(ans,memo[i][k]);
pf("%.15Lf\n",ans);
}
컴파일 시 표준 에러 (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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |