• <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>

            學習心得(code)

            superlong@CoreCoder

              C++博客 :: 首頁 :: 聯系 :: 聚合  :: 管理
              74 Posts :: 0 Stories :: 5 Comments :: 0 Trackbacks

            公告

            文字可能放在http://blog.csdn.net/superlong100,此處存放代碼

            常用鏈接

            留言簿(4)

            我參與的團隊

            搜索

            •  

            最新隨筆

            最新評論

            • 1.?re: Poj 1279
            • 對于一個凹多邊形用叉積計算面積 后能根據結果的正負來判斷給的點集的時針方向?
            • --bsshanghai
            • 2.?re: Poj 3691
            • 你寫的這個get_fail() 好像并是真正的get_fail,也是說fail指向的串并不是當前結點的子串。為什么要這樣弄呢?
            • --acmer1183
            • 3.?re: HDU2295[未登錄]
            • 這個是IDA* 也就是迭代加深@ylfdrib
            • --superlong
            • 4.?re: HDU2295
            • 評論內容較長,點擊標題查看
            • --ylfdrib
            • 5.?re: HOJ 11482
            • 呵呵..把代碼發在這里很不錯..以后我也試試...百度的編輯器太爛了....
            • --csuft1

            閱讀排行榜

            評論排行榜

            第一個雙廣
            #include <iostream>
            #include 
            <string>
            #include 
            <queue>
            #include 
            <map>
            using namespace std;

            char change[][10= {"413526789""253146789""152463789""136425789"
                                 
            "123746859""123586479""123485796""123469758"};
            char end[11];
            string sta;
            int num;
            bool flag = 0;

            queue 
            < string > q[2]; // 0 -> zheng  1-> fan
            map <string , bool> h[2];

            void expend(int type, string ini)
            {
                
            char next[10];
                
            forint i= 0; i< 8; i ++ )
                {
                    
            forint j= 0; j< 9; j ++ )
                        next[j]
            = ini[ change[i][j]- '0'- 1 ];
                    next[
            9]= 0;
                    
            if( h[type][next] ) continue;
                    
            if( h[1-type][next] ) 
                    {
                        flag 
            = 1;
                        
            return;
                    }
                    q[type].push(next);
                    h[type][next] 
            = 1;
                }
            }

            int bfs()
            {
                
            int cnt = 0, index, len;
                
            while!q[0].empty() ) q[0].pop();
                
            while!q[1].empty() ) q[1].pop();
                h[
            0].clear();    h[1].clear();
                sta 
            = "123456789";
                h[
            0][sta] = 1;
                h[
            1][end] = 1;
                
            if(h[0][end]) return 0;
                q[
            0].push(sta);
                q[
            1].push(end);
                flag 
            = 0;
                
            string temp;
                
            while!q[0].empty() || !q[1].empty() )
                {
                    index 
            = 0;
                    
            if( q[0].size() > q[1].size() ) index = 1;
                    
            if( q[index].size() == 0 ) index = 1 - index;
                    len 
            = q[index].size();    
                    
            while(len --)
                    {
                        temp 
            = q[index].front();
                        q[index].pop();
                        expend(index, temp);
                        
            if(flag) break;
                    }
                    cnt 
            ++;
                    
            if(flag) return cnt;
                    
            if(cnt > num) return -1;
                }
            }


            int main()
            {
                
            int test = 0;
                
            while(gets(end) != NULL)
                {
                    
            if!strcmp(end, "0000000000") ) break;
                    num 
            = end[0- '0';
                    
            for(int i = 0; i <= 9; i ++) end[i] = end[i + 1];
                    
            int ans = bfs();
                    
            if(ans < 0 || (ans >0 && num < ans) ) ans = -1;
                    printf(
            "%d. %d\n"++test, ans);
                }
            }

            如果使用逆序判重的話當然會跑得更快
            #include <iostream>
            #include 
            <string>
            #include 
            <queue>
            using namespace std;

            char change[][10= {"413526789""253146789""152463789""136425789"
                                 
            "123746859""123586479""123485796""123469758"};
            char end[11];
            string sta;
            int num;
            bool flag = 0;

            queue 
            < string > q[2]; // 0 -> zheng  1-> fan
            bool h[2][370000];

            int map(string ss)
            {
                
            int hash = 0base = 1, answer = 0;
                
            for(int i = 0; i < 9; i ++)
                {
                    
            if(!basebase = 1;
                    
            base *= i; hash = 0;
                    
            for(int j = 0; j < i; j ++)
                    
            if(ss[j] > ss[i]) hash ++;
                    answer 
            += hash * base;
                }
                
            return answer;
            }

            void expend(int type, string ini)
            {
                
            char next[10];
                
            int tmp;
                
            forint i= 0; i< 8; i ++ )
                {
                    
            forint j= 0; j< 9; j ++ )
                        next[j]
            = ini[ change[i][j]- '0'- 1 ];
                    next[
            9]= 0;
                    tmp 
            = map(next);
                    
            if( h[type][tmp] ) continue;
                    
            if( h[1-type][tmp] ) 
                    {
                        flag 
            = 1;
                        
            return;
                    }
                    q[type].push(next);
                    h[type][tmp] 
            = 1;
                }
            }

            int bfs()
            {
                
            int cnt = 0, index, len;
                
            while!q[0].empty() ) q[0].pop();
                
            while!q[1].empty() ) q[1].pop();
                memset(h, 
            0sizeof(h));
                sta 
            = "123456789";
                h[
            0][map(sta)] = 1;
                h[
            1][map(end)] = 1;
                
            if(h[0][map(end)]) return 0;
                q[
            0].push(sta);
                q[
            1].push(end);
                flag 
            = 0;
                
            string temp;
                
            while!q[0].empty() || !q[1].empty() )
                {
                    index 
            = 0;
                    
            if( q[0].size() > q[1].size() ) index = 1;
                    
            if( q[index].size() == 0 ) index = 1 - index;
                    len 
            = q[index].size();    
                    
            while(len --)
                    {
                        temp 
            = q[index].front();
                        q[index].pop();
                        expend(index, temp);
                        
            if(flag) break;
                    }
                    cnt 
            ++;
                    
            if(flag) return cnt;
                    
            if(cnt > num) return -1;
                }
            }

            int main()
            {
                
            int test = 0;
                
            while(gets(end) != NULL)
                {
                    
            if!strcmp(end, "0000000000") ) break;
                    num 
            = end[0- '0';
                    
            for(int i = 0; i <= 9; i ++) end[i] = end[i + 1];
                    
            int ans = bfs();
                    
            if(ans < 0 || (ans >0 && num < ans) ) ans = -1;
                    printf(
            "%d. %d\n"++test, ans);
                }
            }

            posted on 2009-08-21 20:34 superlong 閱讀(132) 評論(0)  編輯 收藏 引用
            性欧美大战久久久久久久久| 久久国产乱子精品免费女| segui久久国产精品| 欧美久久久久久精选9999| 久久精品国产2020| 国产AⅤ精品一区二区三区久久| 久久精品成人免费国产片小草| 久久亚洲精品无码aⅴ大香| 99久久精品日本一区二区免费| 久久嫩草影院免费看夜色| 久久综合亚洲色一区二区三区| 伊人久久大香线蕉精品| 亚洲欧美伊人久久综合一区二区| 日本精品久久久中文字幕| 久久久久久久女国产乱让韩| 国产亚洲精午夜久久久久久 | 亚洲AV无码久久| 99久久精品无码一区二区毛片| 国产亚洲精品久久久久秋霞| 久久精品国产清自在天天线| 99久久er这里只有精品18| 国内精品久久久久影院亚洲| 91精品日韩人妻无码久久不卡| 国产精品免费福利久久| 狠狠综合久久AV一区二区三区| 久久久久国产精品麻豆AR影院| 亚洲综合精品香蕉久久网97| 丰满少妇人妻久久久久久| 国内精品久久人妻互换| 浪潮AV色综合久久天堂| 性高湖久久久久久久久| 三上悠亚久久精品| 久久久久亚洲av无码专区| 婷婷综合久久中文字幕蜜桃三电影| 思思久久99热只有频精品66| 亚洲国产精品综合久久一线| 亚洲精品tv久久久久| 久久久精品国产亚洲成人满18免费网站 | 狠狠色丁香婷婷久久综合不卡| 中文字幕乱码久久午夜| 亚洲中文字幕久久精品无码APP|