Submission #18081

# Submission time Handle Problem Language Result Execution time Memory
18081 2016-01-20T04:58:58 Z comet 매트 (KOI15_mat) C++
Compilation error
0 ms 0 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(a[0][k].r>a[0][i].l)continue;
				if(cross(k,j))continue;

				if(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(a[1][k].r>a[1][j].l)continue;
				if(cross(i,k))continue;

				if(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;
}

Compilation message

mat.cpp:23:40: error: ‘>>’ should be ‘> >’ within a nested template argument list
 priority_queue<pp,vector<pp>,greater<pp>> Qi[3010],Qj[3010];
                                        ^
mat.cpp: In function ‘int main()’:
mat.cpp:39:20: warning: extended initializer lists only available with -std=c++11 or -std=gnu++11
   a[i][sz[i]++]=mat{0,0,0,0};
                    ^
mat.cpp:45:20: warning: extended initializer lists only available with -std=c++11 or -std=gnu++11
   a[p][sz[p]++]=mat{l,r,h,k};
                    ^
mat.cpp:50:18: warning: extended initializer lists only available with -std=c++11 or -std=gnu++11
   a[i][sz[i]]=mat{1e9,1e9,0,0};
                  ^
mat.cpp:50:30: warning: narrowing conversion of ‘1.0e+9’ from ‘double’ to ‘int’ inside { } is ill-formed in C++11 [-Wnarrowing]
   a[i][sz[i]]=mat{1e9,1e9,0,0};
                              ^
mat.cpp:50:30: warning: narrowing conversion of ‘1.0e+9’ from ‘double’ to ‘int’ inside { } is ill-formed in C++11 [-Wnarrowing]
mat.cpp:36:21: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d%d",&N,&W);
                     ^
mat.cpp:44:37: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d%d%d%d%d",&p,&l,&r,&h,&k);
                                     ^