• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            posts - 43,  comments - 9,  trackbacks - 0
            http://acm.hdu.edu.cn/showproblem.php?pid=3311

            給定6個基礎點,和1000個輔助點,以及無向邊若干。
            求一棵代價最小的生成子樹,使得6個基礎點連通。
            http://en.wikipedia.org/wiki/Steiner_tree_problem

            方法一:
            狀態DP。
            一棵樹,實際上可以看成是由兩棵子樹拼接而成,或者一棵樹擴展一條邊篩選。而要完整地表示一棵子樹,需要記錄它的根,和對6個基礎點的覆蓋狀態。
            這樣求一棵大樹,可以枚舉接合點,以及兩個子樹的覆蓋狀態。
            若dp[i][j],i表示接合點,j表示覆蓋狀態,那么dp[i][j]=min{dp[i][k]+dp[i][j^k]}。
            直接擴展一條邊, 可以在保持j不變的情況下, 優先隊列廣搜, 大大降低復雜度.

            方法二:
            spfa。
            dp[i][j]意義同上。一個點(i,j),對每個鄰接點i',枚舉那一頭的狀態j',然后用dp[i][j]+dp[i'][j']+way[i][i']去更新dp[i][j|j']和dp[i'][j|j']。

            ps. topcoder srm 470 div1 level3是此題升級版.

            ??1?#include?<string>
            ??2?#include?<vector>
            ??3?#include?<list>
            ??4?#include?<map>
            ??5?#include?<queue>
            ??6?#include?<stack>
            ??7?#include?<set>
            ??8?#include?<iostream>
            ??9?#include?<sstream>
            ?10?#include?<numeric>
            ?11?#include?<algorithm>
            ?12?#include?<cmath>
            ?13?#include?<cctype>
            ?14?#include?<cstdlib>
            ?15?#include?<cstdio>
            ?16?#include?<cstring>
            ?17?using?namespace?std;
            ?18?
            ?19?#define?CLR(x)?memset((x),0,sizeof(x))
            ?20?#define?SET(x,y)?memset((x),(y),sizeof(x))
            ?21?#define?REP(i,x)?for(int?i=0;i<(x);i++)
            ?22?#define?FOR(i,x,y)?for(int?i=(x);i<(y);i++)
            ?23?#define?VI?vector<int>?
            ?24?#define?PB(i,x)?(i).push_back(x)
            ?25?#define?MP(x,y)?make_pair((x),(y))
            ?26?
            ?27?struct?EDGE{
            ?28?????int?v,e,d;
            ?29?}edg[20000];
            ?30?int?ecnt,?gg[1006];
            ?31?
            ?32?struct?HEAP{
            ?33?????int?v,d;
            ?34?????void?set(int?nv,?int?nd){v=nv;d=nd;}
            ?35?}hp[1006*(1<<6)*10];
            ?36?int?sz;
            ?37?bool?vis[1006];
            ?38?
            ?39?int?dp[1006][1<<6];
            ?40?int?N,?M,?P;
            ?41?
            ?42?bool?cmp(const?HEAP?&a,?const?HEAP?&b)
            ?43?{?return?a.d>b.d;?}
            ?44?
            ?45?void?addedge(int?u,?int?v,?int?d)
            ?46?{
            ?47?????edg[ecnt].v=v;?edg[ecnt].d=d;?edg[ecnt].e=gg[u];?gg[u]=ecnt++;
            ?48?????edg[ecnt].v=u;?edg[ecnt].d=d;?edg[ecnt].e=gg[v];?gg[v]=ecnt++;
            ?49?}
            ?50?
            ?51?int?steiner()
            ?52?{
            ?53?????int?up?=?1<<(N+1);
            ?54?????SET(dp,-1);
            ?55?????REP(i,N+1)?dp[i][1<<i]=0;
            ?56?????FOR(i,N+1,N+M+1)?dp[i][0]=0;
            ?57?????REP(i,up){
            ?58?????????REP(j,N+M+1){
            ?59?????????????for(int?k=i;?k>0;?k=(k-1)&i){
            ?60?????????????????if(dp[j][k]!=-1?&&?dp[j][i^k]!=-1)
            ?61?????????????????????if(dp[j][i]==-1?||?dp[j][i]>dp[j][k]+dp[j][i^k])
            ?62?????????????????????????dp[j][i]=dp[j][k]+dp[j][i^k];
            ?63?????????????}
            ?64?????????}
            ?65?????????sz=0;
            ?66?????????CLR(vis);
            ?67?????????REP(j,N+M+1)?if(dp[j][i]!=-1){
            ?68?????????????hp[sz++].set(j,dp[j][i]);
            ?69?????????????push_heap(hp,?hp+sz,?cmp);
            ?70?????????}
            ?71?????????while(sz){
            ?72?????????????int?now=hp[0].v;
            ?73?????????????pop_heap(hp,?hp+sz--,cmp);
            ?74?????????????if(vis[now])continue;
            ?75?????????????vis[now]=true;
            ?76?????????????for(int?e=gg[now];?~e;?e=edg[e].e){
            ?77?????????????????int?to=edg[e].v,?td=dp[now][i]+edg[e].d;
            ?78?????????????????if(dp[to][i]==-1?||?dp[to][i]>td){
            ?79?????????????????????dp[to][i]=td;
            ?80?????????????????????hp[sz++].set(to,td);
            ?81?????????????????????push_heap(hp,?hp+sz,?cmp);
            ?82?????????????????}
            ?83?????????????}
            ?84?????????}
            ?85?????}
            ?86?????return?dp[0][up-1];
            ?87?}
            ?88?
            ?89?int?main()
            ?90?{
            ?91?????while(~scanf("%d?%d?%d",?&N,?&M,?&P)){
            ?92?????????int?u,?v,?d;
            ?93?????????SET(gg,-1);?ecnt=0;
            ?94?????????REP(i,N+M){
            ?95?????????????scanf("%d",?&d);
            ?96?????????????addedge(0,i+1,?d);
            ?97?????????}
            ?98?????????REP(i,P){
            ?99?????????????scanf("%d?%d?%d",?&u,?&v,?&d);
            100?????????????addedge(u,v,d);
            101?????????}
            102?????????int?ret=steiner();
            103?????????printf("%d\n",?ret);
            104?????}
            105?????return?0;
            106?}

            posted on 2010-05-27 16:21 wolf5x 閱讀(594) 評論(0)  編輯 收藏 引用 所屬分類: acm_icpc
            <2009年2月>
            25262728293031
            1234567
            891011121314
            15161718192021
            22232425262728
            1234567

            "Do not spend all your time on training or studying - this way you will probably become very exhausted and unwilling to compete more. Whatever you do - have fun. Once you find programming is no fun anymore – drop it. Play soccer, find a girlfriend, study something not related to programming, just live a life - programming contests are only programming contests, and nothing more. Don't let them become your life - for your life is much more interesting and colorful." -- Petr

            留言簿(3)

            隨筆分類(59)

            隨筆檔案(43)

            cows

            搜索

            •  

            最新評論

            評論排行榜

            日韩人妻无码精品久久免费一| 办公室久久精品| 亚洲精品无码久久千人斩| 久久精品国产2020| 久久国产精品无码HDAV| 久久久久免费精品国产| 欧美激情精品久久久久久久九九九 | 久久久久久亚洲精品成人| 狠狠久久亚洲欧美专区| 欧美午夜精品久久久久久浪潮| 亚洲中文久久精品无码| 国产成人精品久久亚洲高清不卡 | 亚洲国产成人乱码精品女人久久久不卡 | 久久免费高清视频| 久久久亚洲欧洲日产国码是AV| 69SEX久久精品国产麻豆| 欧美麻豆久久久久久中文| 久久A级毛片免费观看| 2021久久精品免费观看| 国产巨作麻豆欧美亚洲综合久久| 天天躁日日躁狠狠久久 | 97久久婷婷五月综合色d啪蜜芽| 99久久国产综合精品五月天喷水| 久久精品国产亚洲AV香蕉| 久久久久国产视频电影| 久久免费美女视频| 精品久久久久久亚洲| 人妻丰满AV无码久久不卡| 久久久亚洲欧洲日产国码是AV| 久久人人爽人人澡人人高潮AV| 国产精品亚洲综合专区片高清久久久 | 青青青青久久精品国产h| 国产精品99久久免费观看| 日韩人妻无码精品久久免费一| 中文字幕久久精品无码| 久久综合鬼色88久久精品综合自在自线噜噜| 99久久99这里只有免费的精品| 狠狠色丁香久久婷婷综合五月| 国内精品久久久久影院优| 99久久99久久精品免费看蜜桃| 国产精品久久久久久影院|