• 搜索(DLX):HDU 3663 Power Stations


    Power Stations

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
    Total Submission(s): 2164    Accepted Submission(s): 626
    Special Judge


    Problem Description
    There are N towns in our country, and some of them are connected by electricity cables. It is known that every town owns a power station. When a town’s power station begins to work, it will provide electric power for this town and the neighboring towns which are connected by cables directly to this town. However, there are some strange bugs in the electric system –One town can only receive electric power from no more than one power station, otherwise the cables will be burned out for overload.

    The power stations cannot work all the time. For each station there is an available time range. For example, the power station located on Town 1 may be available from the third day to the fifth day, while the power station on Town 2 may be available from the first day to the forth day. You can choose a sub-range of the available range as the working time for each station. Note that you can only choose one sub-range for each available range, that is, once the station stops working, you cannot restart it again. Of course, it is possible not to use any of them.

    Now you are given all the information about the cable connection between the towns, and all the power stations’ available time. You need to find out a schedule that every town will get the electricity supply for next D days, one and only one supplier for one town at any time.
     
    Input
    There are several test cases. The first line of each test case contains three integers, N, M and D (1 <= N <= 60, 1 <= M <= 150, 1 <= D <= 5), indicating the number of towns is N, the number of cables is M, and you should plan for the next D days.

    Each of the next M lines contains two integers a, b (1 <= a, b <= N), which means that Town a and Town b are connected directly. Then N lines followed, each contains two numbers si and ei, (1 <= si <= ei <= D) indicating that the available time of Town i’s power station is from the si-th day to the ei-th day (inclusive).
     
    Output
    For each test case, if the plan exists, output N lines. The i-th line should contain two integers ui and vi, indicating that Town i’s power station should work from the ui-th day to vi-day (inclusive). If you didn’t use this power station at all, set ui = vi = 0.

    If the plan doesn’t exist, output one line contains “No solution” instead.

    Note that the answer may not be unique. Any correct answers will be OK.

    Output a blank line after each case.
     
    Sample Input
    3 3 5
    1 2
    2 3
    3 1
    1 5
    1 5
    1 5
    4 4 5
    1 2
    2 3
    3 4
    4 1
    1 5
    1 5
    1 5
    1 5
     
    Sample Output
     
    1 5
    0 0
    0 0
     
    No solution
     
      就是没看题导致WA1发。
      1 #include <iostream>
      2 #include <cstring>
      3 #include <cstdio>
      4 using namespace std;
      5 const int maxn=5010;
      6 const int maxnode=1000010;
      7 int s[maxn],t[maxn],belong[maxn],ans[maxn];
      8 struct DLX{
      9     int L[maxnode],R[maxnode],U[maxnode],D[maxnode];
     10     int cnt,Row[maxnode],Col[maxnode],C[maxn],H[maxn];
     11     void Init(int n,int m){
     12         for(int i=0;i<=m;i++){
     13             L[i]=i-1;R[i]=i+1;
     14             U[i]=D[i]=i;C[i]=0;
     15         }
     16         cnt=m;L[0]=m;R[m]=0;
     17         for(int i=1;i<=n;i++)H[i]=0;        
     18     }
     19     
     20     void Link(int r,int c){
     21         Row[++cnt]=r;C[Col[cnt]=c]+=1;
     22 
     23         U[cnt]=c;D[cnt]=D[c];U[D[c]]=cnt;D[c]=cnt;
     24 
     25         if(!H[r])H[r]=L[cnt]=R[cnt]=cnt;
     26         else R[cnt]=R[H[r]],L[cnt]=H[r],L[R[cnt]]=cnt,R[L[cnt]]=cnt; 
     27     }
     28     
     29     void Delete(int c){
     30         L[R[c]]=L[c];R[L[c]]=R[c];
     31         for(int i=D[c];i!=c;i=D[i])
     32             for(int j=R[i];j!=i;j=R[j])
     33                 --C[Col[j]],U[D[j]]=U[j],D[U[j]]=D[j];
     34     }
     35     
     36     void Resume(int c){
     37         L[R[c]]=c;R[L[c]]=c;
     38         for(int i=U[c];i!=c;i=U[i])
     39             for(int j=L[i];j!=i;j=L[j])
     40                 ++C[Col[j]],U[D[j]]=j,D[U[j]]=j;
     41     }
     42     
     43     bool Solve(){
     44         if(!R[0])return true;
     45         int p=R[0];
     46         for(int i=R[p];i;i=R[i])
     47             if(C[p]>C[i])
     48                 p=i;
     49         
     50         Delete(p);
     51         for(int i=D[p];i!=p;i=D[i]){
     52             if(ans[belong[Row[i]]])continue;
     53             for(int j=R[i];j!=i;j=R[j])
     54                 Delete(Col[j]);
     55                 
     56             ans[belong[Row[i]]]=Row[i];
     57             if(Solve())
     58                 return true;
     59             ans[belong[Row[i]]]=0;
     60             for(int j=L[i];j!=i;j=L[j])
     61                 Resume(Col[j]);
     62         }
     63         Resume(p);
     64         return false;        
     65     }
     66 }dlx;
     67 
     68 int L[maxn],R[maxn];
     69 bool G[maxn][maxn];
     70 
     71 int main(){
     72     int a,b,N,M,D,tot;
     73     while(scanf("%d%d%d",&N,&M,&D)!=EOF){
     74         memset(G,0,sizeof(G));
     75         while(M--){
     76             scanf("%d%d",&a,&b);
     77             G[a][b]=true;
     78             G[b][a]=true;
     79         }
     80         
     81         tot=0;
     82         for(int i=1;i<=N;i++){
     83             scanf("%d%d",&s[i],&t[i]);
     84             tot+=(t[i]-s[i]+1)*(t[i]-s[i]+2)/2;
     85             G[i][i]=true;
     86         }
     87         
     88         dlx.Init(tot,N*D);
     89         memset(ans,0,sizeof(ans));
     90         for(int x=1,p=0;x<=N;x++)
     91             for(int l=s[x];l<=t[x];l++)
     92                 for(int r=l;r<=t[x];r++){
     93                     ++p;L[p]=l;R[p]=r;belong[p]=x;
     94                     for(int j=l;j<=r;j++)
     95                         for(int y=1;y<=N;y++)
     96                             if(G[x][y])dlx.Link(p,N*(j-1)+y);
     97                 }
     98         if(dlx.Solve()){
     99             for(int i=1;i<=N;i++)
    100                 printf("%d %d
    ",L[ans[i]],R[ans[i]]);
    101         }
    102         else
    103             printf("No solution
    ");
    104         printf("
    ");    
    105     }    
    106     return 0;    
    107 }
    尽最大的努力,做最好的自己!
  • 相关阅读:
    DirectX编译环境配置
    [转]unresolved external symbol __imp__PlaySoundA@12的解决方法
    Win7/Win8/Win10显示桌面按钮
    Win8中更改账户信息
    3D游戏图形引擎
    【整理】鼠标位置编码(Mouse Position Code)和鼠标激活返回值(MOUSEACTIVATE Return Codes)
    精简ICO图标可减小EXE程序文件大小
    【整理】SYSCOMMAND的wParam值的宏定义
    迅雷网速测试器 下载速率测试记录
    【整理】窗体消息(Window Messages) 的宏定义
  • 原文地址:https://www.cnblogs.com/TenderRun/p/5578574.html
Copyright © 2020-2023  润新知