# |
제출 시각 |
아이디 |
문제 |
언어 |
결과 |
실행 시간 |
메모리 |
18075 |
2016-01-19T23:24:54 Z |
comet |
매트 (KOI15_mat) |
C++ |
|
1000 ms |
80808 KB |
#include <cstdio>
#include <algorithm>
#include <vector>
#include <cstring>
using namespace std;
struct mat{
int l,r,h,k;
bool operator<(const mat& r)const{
return l<r.l;
}
}a[2][3010];
int N,W;
int sz[2];
int dp[3010][3010];
int opt[3010][3010];
bool opti[3010][3010];
bool cross(int x,int y){
if(a[0][x].r<=a[1][y].l)return 0;
if(a[0][x].l>=a[1][y].r)return 0;
if(a[0][x].h+a[1][y].h<=W)return 0;
return 1;
}
int main(){
scanf("%d%d",&N,&W);
int p,l,r,h,k;
for(int i=0;i<N;i++){
scanf("%d%d%d%d%d",&p,&l,&r,&h,&k);
a[p][sz[p]++]=mat{l,r,h,k};
}
for(int i=0;i<2;i++){
sort(a[i],a[i]+sz[i]);
a[i][sz[i]]=mat{1e9,1e9,0,0};
}
for(int i=0;i<=sz[0];i++){
for(int j=0;j<=sz[1];j++){
dp[i][j]=-1e9;
if(cross(i,j))continue;
dp[i][j]=a[0][i].k+a[0][j].k;
for(int k=0;k<i;k++){
if(cross(k,j))continue;
if(a[opti[k][j]][opt[k][j]].r>a[0][i].l)continue;
if(dp[i][j]<dp[k][j]+a[0][i].k){
dp[i][j]=dp[k][j]+a[0][i].k;
opt[i][j]=k;
opti[i][j]=0;
}
}
for(int k=0;k<j;k++){
if(cross(i,k))continue;
if(a[opti[k][j]][opt[k][j]].r>a[1][j].l)continue;
if(dp[i][j]<dp[i][k]+a[1][j].k){
dp[i][j]=dp[i][k]+a[1][j].k;
opt[i][j]=k;
opti[i][j]=1;
}
}
}
}
printf("%d\n",dp[sz[0]][sz[1]]);
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
80808 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
80808 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
7 ms |
80808 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
45 ms |
80808 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
58 ms |
80808 KB |
Output is correct |
2 |
Execution timed out |
1000 ms |
80804 KB |
Program timed out |
3 |
Halted |
0 ms |
0 KB |
- |