HDU4385Moving Bricks【状压DP】

Moving Bricks

Time Limit: 5000/2000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 724    Accepted Submission(s): 280


Problem Description
Brickgao used to be a real tall, wealthy, handsome man and you might know him well. If you don't, please draw attention to the details below.
Brickgao tried his fortune in investment of golden bricks with his two partners LS and Jne. Because he knew little about investment he gave his total trust and bank savings to his two partners who looked smart. 
However, due to the bad luck and lack of business skills, LS and Jne used up Brickgao's fund, and nothing in return. Their investment failed and the three become diaosi. 
Brickgao had no other choice but to earn a living as a construction worker and he found his place on a building site moving bricks which of course was not golden ones. There were many brick fragment scattered on the site and workers had to move them to the building that under construction. Brickgao was made to cope with the task.
The problem is that the Brickgao couldn’t carry more than two bricks at a time since they were too heavy. Also, if he had taken a brick, he couldn’t put it anywhere except the goal building — his inherent sense of order does not let him do so.
You are given N pairs of coordinates of the bricks and the coordinates of the goal building. It is known that the Brickgao covers the distance between any two points in the time equal to the squared length of the segment between the points. It is also known that initially the coordinates of the Brickgao and the goal building are the same. You are asked to find such an order of bricks, that the Brickgao could move all the bricks to the building in a minimum time period. You can assume the no two bricks shared the same coordinates. If more than one optimum moving sequence Brickgao could find, he would choose the smallest lexicographic one because of the inherent sense of order.
 

 

Input
The first line of the input file contains an integer T which indicates the number of test cases. The first line of each case contains the building's coordinates x ,y. The second line contains number N (1<= N < 20) — the amount of bricks on the building site. The following N lines contain the bricks' coordinates. All the coordinates do not exceed 100 in absolute value. All the given positions are different. All the numbers are integer.
 

 

Output
For each test case, first you should print "Case x:" in a line, where x stands for the case number started with 1. Then two lines follow: the first line output the only number — the minimum time Brickgao needed to move the bricks to building, and the second line output the optimum order for Brickgao to move the bricks. Each brick in the input is described by its index number (from 1 to N).
 

 

Sample Input
2 0 0 2 1 1 -1 1 1 1 3 4 3 3 4 0 0
 

 

Sample Output
Case 1: 8 1 2 Case 2: 32 1 2 3
Hint
In the first test, Brickgao gets brick 1 and brick 2 and returns to the building. In the second test, Brickgao first moves brick 1 and brick 2 to the building and then gets the third and returns to the building.
 

 

Author
WHU
 

 

Source

 

这个题说实话也卡了很多天了  原因是 字典序最小之前没有处理好

 

之前做过一个很像的题  是一次训练赛德题  

那题是这样的  告诉你n个点n 《= 15  的坐标  问一笔画下来最少的路程

那个是这样的dp[i][j]代表状态为i  以第j个点位结尾的最短路

由于|的性质  所以直接往后枚举状态进行转移就可以了

 

这个题很像  

题意是有n个点n<20  每次从初始点出发取回一个或两个点上的石头   取回需要的价值是 距离的平方和

然后问取回所有点的最小价值

这个题dp[i]代表到大i状态的最短路  然后用一个数组表示最短路的最后一个点是啥 

最后 由于每次只取回一或者两个点  只要把它拍一下序就好了

代码:

  1 #include <iostream>
  2 #include <cstdio>
  3 #include <cstring>
  4 #include <algorithm>
  5 using namespace std;
  6 
  7 const int maxn = 20;
  8 int dp[1 << maxn];
  9 int x[maxn], y[maxn];
 10 int dist[maxn][maxn];
 11 int n, t;
 12 int fa[maxn];
 13 
 14 struct Node {
 15     int pr;
 16     int x1, x2;
 17 }node[1 << maxn];
 18 struct Ans {
 19     int flag;
 20     int x1, x2;
 21 }ans[maxn];
 22 bool cmp(Ans a1, Ans a2) {
 23     return a1.x1 < a2.x1;
 24 }
 25 int xx[1 << maxn];
 26 int an[maxn];
 27 
 28 void init() {
 29     for(int i = 0; i <= n; i++) {
 30         for(int j = i; j <= n; j++) {
 31             dist[i][j] = dist[j][i] = (x[i] - x[j]) * (x[i] - x[j]) + (y[i] - y[j])*(y[i] - y[j]);
 32             dist[j][i] = dist[i][j];
 33         }
 34     }
 35 }
 36 
 37 void DP() {
 38     memset(dp, 0x3f, sizeof(dp));
 39     dp[0] = 0; xx[0] = 0;
 40     fa[0] = 0;
 41     int Max = 1 << n;
 42     for(int i = 0; i < Max; i++) {
 43         if(dp[i] > 1000000000) continue;
 44         for(int j = 1; j <= n; j++) {
 45             if((i & ( 1 << ( j - 1 ) ) ) == 0 ) {
 46                 int num = i | ( 1 << ( j - 1 ) );
 47                 if(dp[num] > dp[i] + dist[j][0] * 2) {
 48                     dp[num] = dp[i] + dist[j][0] * 2;
 49                     xx[num] = j;
 50                     node[num] = (Node) { i, 0, 0 };
 51                 }
 52             }
 53         }
 54         for(int j = 1; j <= n; j++) {
 55             for(int k = j + 1; k <= n; k++) {
 56                 if((i & ( 1 << ( j - 1 ) ) ) == 0 && ( i & ( 1 << ( k - 1) ) ) == 0) {
 57                     int num = i | ( 1 << ( j - 1 ) );
 58                     num |= ( 1 << ( k - 1) );
 59                     if(dp[num] > dp[i] + dist[0][j] + dist[j][k] + dist[k][0]) {
 60                         dp[num] = dp[i] + dist[0][j] + dist[j][k] + dist[k][0];
 61                         xx[num] = j;
 62                         node[num] = (Node) { i, 1, k };
 63                     }
 64                 }
 65             }
 66         }
 67     }
 68 }
 69 
 70 void P() {
 71     int Max = 1 << n;
 72     printf("%d\n", dp[Max - 1]);
 73     int id = Max - 1;
 74     int cnt = 0;
 75     for(int i = 1; i <= n; i++) {
 76         if(node[id].x1 == 0) {
 77             ans[cnt++] = (Ans) { 1, xx[id], 0 };
 78         } else {
 79             ans[cnt++] = (Ans) { 2, min(xx[id],node[id].x2), max(xx[id],node[id].x2)};
 80             i++; 
 81         }
 82         id = node[id].pr;
 83     }
 84     sort(ans, ans + cnt, cmp);
 85     int cn = 0;
 86     for(int i = 0; i < cnt; i++) {
 87         if(ans[i].flag == 1) {
 88             an[cn++] = ans[i].x1;
 89         } else {
 90             an[cn++] = ans[i].x1;
 91             an[cn++] = ans[i].x2;
 92         }
 93     }
 94     for(int i = 0; i < cn; i++) {
 95         printf(i == 0 ? "%d" : " %d", an[i]);
 96     } puts("");
 97 }
 98 
 99 int main() {
100     scanf("%d",&t);
101     for(int kase = 1; kase <= t; kase++) {
102         scanf("%d %d",&x[0], &y[0]);
103         scanf("%d",&n);
104         for(int i = 1; i <= n; i++) {
105             scanf("%d %d",&x[i], &y[i]);
106         }
107         init();
108         DP();
109         printf("Case %d:\n", kase);
110         P();
111     }
112     return 0;
113 }
View Code

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
1. 智慧社区背景与挑战 随着城市化的快速发展,社区面临健康、安全、邻里关系和服务质量等多方面的挑战。华为技术有限公司提出智慧社区解决方案,旨在通过先进的数字化技术应对这些问题,提升城市社区的生活质量。 2. 技术推动智慧社区发展 技术进步,特别是数字化、无线化、移动化和物联化,为城市社区的智慧化提供了可能。这些技术的应用不仅提高了社区的运行效率,也增强了居民的便利性和安全性。 3. 智慧社区的核心价值 智慧社区承载了智慧城市的核心价值,通过全面信息化处理,实现对城市各个方面的数字网络化管理、服务与决策功能,从而提升社会服务效率,整合社会服务资源。 4. 多层次、全方位的智慧社区服务 智慧社区通过构建和谐、温情、平安和健康四大社区模块,满足社区居民的多层次需求。这些服务模块包括社区医疗、安全监控、情感沟通和健康监测等。 5. 智慧社区技术框架 智慧社区技术框架强调统一平台的建设,设立数据中心,构建基础网络,并通过分层建设,实现平台能力及应用的可持续成长和扩展。 6. 感知统一平台与服务方案 感知统一平台是智慧社区的关键组成部分,通过统一的RFID身份识别和信息管理,实现社区服务的智能化和便捷化。同时,提供社区内外监控、紧急救助服务和便民服务等。 7. 健康社区的构建 健康社区模块专注于为居民提供健康管理服务,通过整合医疗资源和居民接入,实现远程医疗、慢性病管理和紧急救助等功能,推动医疗模式从治疗向预防转变。 8. 平安社区的安全保障 平安社区通过闭路电视监控、防盗报警和紧急求助等技术,保障社区居民的人身和财产安全,实现社区环境的实时监控和智能分析。 9. 温情社区的情感沟通 温情社区着重于建立社区居民间的情感联系,通过组织社区活动、一键呼叫服务和互帮互助平台,增强邻里间的交流和互助。 10. 和谐社区的资源整合 和谐社区作为社会资源的整合协调者,通过统一接入和身份识别,实现社区信息和服务的便捷获取,提升居民生活质量,促进社区和谐。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值