이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <algorithm>
using namespace std;
constexpr unsigned MAX_VAL = 500000001;
int main(){
ios_base::sync_with_stdio(false);
unsigned n,m,h;
cin>>n>>m>>h;
unsigned*arr=new unsigned[n*m];
fill_n(arr,n*m,0);
arr[0]=1;
for(unsigned i=0;i<n-1;++i){
for(unsigned j=0;j<h;++j){
unsigned c,q;
cin>>c>>q;
if(c>i){
unsigned fl=0;
for(unsigned k=q;k<m;++k){
fl=min(MAX_VAL,fl+arr[i*m+k-q]);
arr[c*m+k]=min(MAX_VAL,arr[c*m+k]+fl);
}
}
}
}
for(unsigned i=0;i<m;++i){
if(i>0)cout<<' ';
cout<<arr[(n-1)*m+i];
}
cout<<'\n';
delete[] arr;
}
# | 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... |