hdu3339 In Action (dijkstra+01背包)

In Action

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 4954    Accepted Submission(s): 1640


Problem Description
hdu3339 In Action (dijkstra+01背包)_第1张图片
Since 1945, when the first nuclear bomb was exploded by the Manhattan Project team in the US, the number of nuclear weapons have soared across the globe.
Nowadays,the crazy boy in FZU named AekdyCoin possesses some nuclear weapons and wanna destroy our world. Fortunately, our mysterious spy-net has gotten his plan. Now, we need to stop it.
But the arduous task is obviously not easy. First of all, we know that the operating system of the nuclear weapon consists of some connected electric stations, which forms a huge and complex electric network. Every electric station has its power value. To start the nuclear weapon, it must cost half of the electric network's power. So first of all, we need to make more than half of the power diasbled. Our tanks are ready for our action in the base(ID is 0), and we must drive them on the road. As for a electric station, we control them if and only if our tanks stop there. 1 unit distance costs 1 unit oil. And we have enough tanks to use.
Now our commander wants to know the minimal oil cost in this action.
 

Input
The first line of the input contains a single integer T, specifying the number of testcase in the file.
For each case, first line is the integer n(1<= n<= 100), m(1<= m<= 10000), specifying the number of the stations(the IDs are 1,2,3...n), and the number of the roads between the station(bi-direction).
Then m lines follow, each line is interger st(0<= st<= n), ed(0<= ed<= n), dis(0<= dis<= 100), specifying the start point, end point, and the distance between.
Then n lines follow, each line is a interger pow(1<= pow<= 100), specifying the electric station's power by ID order.
 

Output
The minimal oil cost in this action.
If not exist print "impossible"(without quotes).
 

Sample Input
 
   
2 2 3 0 2 9 2 1 3 1 0 2 1 3 2 1 2 1 3 1 3
 

Sample Output
 
   
5 impossible
 

Author
Lost@HDU
 

Source
HDOJ Monthly Contest – 2010.03.06
 

Recommend
lcy   |   We have carefully selected several similar problems for you:   1548  3338  1546  3342  1598 
 

代码:

#include
#include
#include
using namespace std;

const int maxn=1e2;
const int maxp=1e4;
int edge[maxn+5][maxn+5];
int n,p[maxn+5],dist[maxn+5],f[maxp+5];
bool used[maxn+5];

void dijkstra()
{
   memset(dist,10,sizeof(dist)),dist[0]=0;
   memset(used,0,sizeof(used));
   
   int i,j,k;
   for(i=1;i<=n;i++)
     {
       for(k=n+1,j=0;j<=n;j++)
         if(!used[j] && dist[j]=0;j--)
	      if(j+p[i]>=sum)f[sum]=min(f[sum],f[j]+dist[i]);
	      else f[j+p[i]]=min(f[j+p[i]],f[j]+dist[i]);
	      
	  if(f[sum]==f[sum+5])printf("impossible\n");
	  else printf("%d\n",f[sum]);
	}
  return 0;
}




你可能感兴趣的:(hdu3339 In Action (dijkstra+01背包))