UVa:301 Transportation
나중에 인터넷의 방법을 배웠다. 수조로 인원수를 표시하고 하나의 수조만 사용한다. 수조의 모든 요소는 매 역의 인원수를 표시한다. 이렇게 하면 이 수조는 현재 상태의 인원수를 표시하는데 나처럼 많은 공간을 낭비하지 않는다.이렇게 되면 매번 표를 예매하면 되고, 매 역의 문제를 고려할 필요가 없다.2^22번, 가지를 자르지 않았고, 시간을 초과하지 않았다.
#include <iostream>
#include <cstdlib>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <queue>
#include <vector>
#include <map>
#include <stack>
#include <algorithm>
#define MAXN 100005
#define MOD 1000000007
#define INF 100000000
#define ll long long
//ios::sync_with_stdio(false)
using namespace std;
int n,m,q;
struct Order
{
int st,ed,peo,cost;
Order(int a=0,int b=0,int c=0,int d=0):st(a),ed(b),peo(c),cost(d) {}
bool operator < (const Order p) const
{
if(st==p.st) return ed<p.ed;
return st<p.st;
}
};
vector<Order> vec;
int people[30],maxn;
bool Judge(int st,int ed,int peo)
{
for(int i=st; i<ed; ++i)
if(people[i]+peo>n) return false;
return true;
}
void dfs(int cur,int sum)
{
if(cur>=q||vec[cur].st>=m) maxn=max(maxn,sum);
else
{
if(Judge(vec[cur].st,vec[cur].ed,vec[cur].peo))
{
for(int i=vec[cur].st; i<vec[cur].ed; ++i)
people[i]+=vec[cur].peo;
dfs(cur+1,sum+vec[cur].cost);
for(int i=vec[cur].st; i<vec[cur].ed; ++i)
people[i]-=vec[cur].peo;
}
dfs(cur+1,sum);
}
}
int main()
{
while(scanf("%d%d%d",&n,&m,&q))
{
if(!n&&!m&&!q) break;
int x,y,z;
vec.clear();
for(int i=0; i<q; ++i)
{
scanf("%d%d%d",&x,&y,&z);
vec.push_back(Order(x,y,z,(y-x)*z));
}
sort(vec.begin(),vec.end());
memset(people,0,sizeof(people));
maxn=0;
dfs(0,0);
printf("%d
",maxn);
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
「저것과 비슷한 툴」을 조사하려면 어떻게 하면 좋을까?이 기사는 의 개발 팀 「 」에서 실시하고 있는 아웃풋 기획이다 요 전날, 어느 툴과 비슷한 툴을 씻어내려고, 생각대로 암운으로 검색하고 있었습니다만, 「아니, 비슷한 툴을 찾는 방법을 찾는 것이 좋지 않을까...?...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.