# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1110227 | vjudge1 | Tower (JOI24_tower) | C++17 | 63 ms | 20552 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
int n,q;
long long d,a,b;
long long f[2000000];
int k[2000000];
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
if(fopen("c.INP","r")){
freopen("c.INP","r",stdin);
freopen("c.OUT","w",stdout);
}
cin >>n>>q;
cin >>d>>a>>b;
while(n--){
int l,r;
cin >>l>>r;
k[l]++;
k[r+1]--;
}
for(int i=1;i<=1000000;i++){
k[i]+=k[i-1];
if(k[i])f[i]=1e17;
else{
if(i>=d)f[i]=min(f[i-1]+a,f[i-d]+b);
else f[i]=f[i-1]+a;
}
}
while(q--){
int x;
cin >>x;
if(f[x]<1e17)cout <<f[x]<<'\n';
else cout <<-1<<'\n';
}
}
컴파일 시 표준 에러 (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... |