# |
제출 시각 |
아이디 |
문제 |
언어 |
결과 |
실행 시간 |
메모리 |
18084 |
2016-01-20T05:02:15 Z |
comet |
매트 (KOI15_mat) |
C++14 |
|
1000 ms |
107564 KB |
#include <cstdio>
#include <algorithm>
#include <vector>
#include <cstring>
#include <queue>
using namespace std;
typedef pair<int,int> pp;
struct mat{
int l,r,h,k;
bool operator<(const mat& z)const{
return l!=z.l?l<z.l:r<z.r;
}
}a[2][3010];
int N,W;
int sz[2];
int dp[3010][3010];
int opt[2][3010][3010];
priority_queue<pp,vector<pp>,greater<pp>> Qi[3010],Qj[3010];
int Maxi[3010];
int Maxj[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);
for(int i=0;i<2;i++){
a[i][sz[i]++]=mat{0,0,0,0};
}
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[1][j].k;
/*
while(!Qi[j].empty()&&Qi[j].top().first<=a[0][i].l){
int k=Qi[j].top().second;
Qi[j].pop();
if(dp[Maxi[j]][j]<dp[k][j]){
Maxi[j]=k;
}
}
while(!Qj[i].empty()&&Qj[i].top().first<=a[1][j].l){
int k=Qj[i].top().second;
Qj[i].pop();
if(dp[i][Maxj[i]]<dp[i][k]){
Maxj[i]=k;
}
}
if(dp[i][j]<dp[Maxi[j]][j]+a[0][i].k){
dp[i][j]=dp[Maxi[j]][j]+a[0][i].k;
opt[0][i][j]=Maxi[j];
opt[1][i][j]=opt[1][Maxi[j]][j];
}
if(dp[i][j]<dp[i][Maxj[i]]+a[1][j].k){
dp[i][j]=dp[i][Maxj[i]]+a[1][j].k;
opt[0][i][j]=opt[0][i][Maxj[i]];
opt[1][i][j]=Maxj[i];
}
*/
for(int k=0;k<i;k++){
if(max(a[0][k].r,a[1][opt[1][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[0][i][j]=k;
opt[1][i][j]=opt[1][k][j];
}
}
for(int k=0;k<j;k++){
if(max(a[1][k].r,a[0][opt[0][i][k]].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[1][i][j]=k;
opt[0][i][j]=opt[0][i][k];
}
}
// Qi[j].push(pp(max(a[0][i].r,a[1][opt[1][i][j]].r),i));
// Qj[i].push(pp(max(a[1][j].r,a[0][opt[0][i][j]].r),j));
}
}
printf("%d\n",dp[sz[0]][sz[1]]);
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
107564 KB |
Output is correct |
2 |
Correct |
0 ms |
107564 KB |
Output is correct |
3 |
Correct |
0 ms |
107564 KB |
Output is correct |
4 |
Correct |
0 ms |
107564 KB |
Output is correct |
5 |
Correct |
0 ms |
107564 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
107564 KB |
Output is correct |
2 |
Correct |
0 ms |
107564 KB |
Output is correct |
3 |
Correct |
0 ms |
107564 KB |
Output is correct |
4 |
Correct |
0 ms |
107564 KB |
Output is correct |
5 |
Correct |
0 ms |
107564 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
107564 KB |
Output is correct |
2 |
Correct |
4 ms |
107564 KB |
Output is correct |
3 |
Correct |
0 ms |
107564 KB |
Output is correct |
4 |
Correct |
4 ms |
107564 KB |
Output is correct |
5 |
Correct |
4 ms |
107564 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
51 ms |
107564 KB |
Output is correct |
2 |
Correct |
53 ms |
107564 KB |
Output is correct |
3 |
Correct |
50 ms |
107564 KB |
Output is correct |
4 |
Correct |
45 ms |
107564 KB |
Output is correct |
5 |
Correct |
37 ms |
107564 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
41 ms |
107564 KB |
Output is correct |
2 |
Execution timed out |
1000 ms |
107560 KB |
Program timed out |
3 |
Halted |
0 ms |
0 KB |
- |