[P1220] 가로등 끄기
DP 문제인데 검색어도 잘 넘어가요.
그냥 폭력 수색해서 국경까지 가서 불을 끄는 거예요.
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define LL long long
#define MOD 1000000007
using namespace std;
int ans=9999999,p[55],w[55],tot,n,c;
bool vis[55];
void dfs(int pos,int cost,int cnt,int all)
{
if(cost>ans) return;
if(cnt>=n)
{
ans=cost;
return;
}
int l,r;
l=pos;r=pos;
while(vis[l]&&l>=1) l--;
while(vis[r]&&r<=n) r++;
if(l>=1)
{
vis[l]=1;
dfs(l,cost+all*(p[pos]-p[l]),cnt+1,all-w[l]);
vis[l]=0;
}
if(r<=n)
{
vis[r]=1;
dfs(r,cost+all*(p[r]-p[pos]),cnt+1,all-w[r]);
vis[r]=0;
}
}
int main()
{
int i;
scanf("%d%d",&n,&c);
for(i=1;i<=n;i++)
{
scanf("%d%d",&p[i],&w[i]);
tot+=w[i];
}
tot-=w[c];
vis[c]=1;
dfs(c,0,1,tot);
printf("%d",ans);
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
제이티의 사용에 대한 상세한 설명Continuation 메커니즘을 이용하여 대량의 사용자 요청과 비교적 긴 연결을 처리한다.또한 Jetty는 매우 좋은 인터페이스를 설계했기 때문에 Jetty의 어떤 실현이 사용자의 수요를 만족시키지 못할 때 사용자...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.