| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 27668 | suhgyuho_william | Long Distance Coach (JOI17_coach) | C++14 | 2000 ms | 11396 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define lld long long
#define pii pair<int,int>
#define pll pair<lld,lld>
#define pb push_back
#define next nextt
#define Inf 1000000000
#define Linf 1000000000000000000LL
#define Mod 1000000007
using namespace std;
int N,M;
lld X,W,T;
lld a[200002],d[200002],memo[200002],sum[200002];
struct data{
lld d,c;
data(){}
data(lld d,lld c):d(d),c(c){}
bool operator < (const data &cmp) const{
return d < cmp.d;
}
}b[200002];
lld get(lld x){
return ((X-x)/T+1)*W;
}
int main(){
long long iX,iW,iT;
scanf("%lld %d %d %lld %lld",&iX,&N,&M,&iW,&iT);
X = iX; W = iW; T = iT;
for(int i=1; i<=N; i++){
long long ia;
scanf("%lld",&ia);
a[i] = ia;
}
sort(a+1,a+N+1);
for(int i=1; i<=M; i++){
long long id,ic;
scanf("%lld %lld",&id,&ic);
b[i].d = id; b[i].c = ic;
}
sort(b+1,b+M+1);
a[N+1] = X;
for(int i=1; i<=M; i++){
memo[i] = Linf;
sum[i] = sum[i-1]+b[i].c;
}
for(int i=1; i<=N+1; i++){
int it;
it = lower_bound(b+1,b+M+1,data(a[i]%T,0))-b-1;
memo[it] = min(memo[it],a[i]/T);
}
d[0] = get(0);
for(int i=1; i<=M; i++){
d[i] = d[i-1]+get(b[i].d);
if(memo[i] == Linf) continue;
for(int j=0; j<i; j++){
d[i] = min(d[i],d[j]+sum[i]-sum[j]+W*(i-j)*memo[i]);
}
}
long long print = d[M];
printf("%lld\n",print);
return 0;
}
컴파일 시 표준 에러 (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... | ||||
