• <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個(gè)基礎(chǔ)點(diǎn),和1000個(gè)輔助點(diǎn),以及無向邊若干。
            求一棵代價(jià)最小的生成子樹,使得6個(gè)基礎(chǔ)點(diǎn)連通。
            http://en.wikipedia.org/wiki/Steiner_tree_problem

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

            方法二:
            spfa。
            dp[i][j]意義同上。一個(gè)點(diǎn)(i,j),對每個(gè)鄰接點(diǎn)i',枚舉那一頭的狀態(tà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 閱讀(599) 評論(0)  編輯 收藏 引用 所屬分類: acm_icpc
            <2009年6月>
            31123456
            78910111213
            14151617181920
            21222324252627
            2829301234
            567891011

            "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

            搜索

            •  

            最新評論

            評論排行榜

            久久人人爽人人爽人人片AV麻烦 | 久久国产精品-久久精品| 久久久久高潮综合影院| 亚洲成色www久久网站夜月| 亚洲国产精久久久久久久| 无码任你躁久久久久久老妇App| 亚洲精品无码成人片久久| 国产一区二区精品久久岳| 久久精品国产亚洲AV忘忧草18| 精品九九久久国内精品| 久久久久久久精品成人热色戒 | 欧美日韩精品久久久久| 久久久久久久99精品免费观看| 久久综合一区二区无码| 日本道色综合久久影院| 一本久久知道综合久久| 日本加勒比久久精品| 丁香五月综合久久激情| 精品999久久久久久中文字幕| 99蜜桃臀久久久欧美精品网站| 国内精品久久久久久久coent| AV无码久久久久不卡网站下载 | 久久久精品国产亚洲成人满18免费网站| 精品国产99久久久久久麻豆| 久久天天日天天操综合伊人av| 成人国内精品久久久久影院| 久久精品国产亚洲av水果派 | 狠狠干狠狠久久| 99久久er这里只有精品18| 日产精品99久久久久久| 狠狠色噜噜色狠狠狠综合久久| 久久久久久久91精品免费观看 | 久久久久人妻精品一区二区三区| 日韩欧美亚洲国产精品字幕久久久 | 久久久久免费精品国产| 91精品国产综合久久精品| 久久久久免费精品国产| 久久国产精品无码HDAV| 国产精品久久久天天影视| 国产高清国内精品福利99久久| 91精品国产高清久久久久久国产嫩草 |