• <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)  編輯 收藏 引用
            久久人人爽人人爽人人片AV东京热 | 久久中文字幕人妻熟av女| 亚洲国产精品无码久久九九| 日韩欧美亚洲综合久久| 999久久久无码国产精品| 色综合久久天天综线观看| 久久人人爽人人爽人人片AV东京热 | 久久久女人与动物群交毛片| 18岁日韩内射颜射午夜久久成人 | 伊人久久大香线蕉综合热线| 伊人久久大香线蕉AV色婷婷色| 91精品国产色综久久| 久久久久久久精品妇女99| 国内精品久久久久国产盗摄| 亚洲人成精品久久久久| 久久影视国产亚洲| 色综合久久综合网观看| 久久精品水蜜桃av综合天堂| 亚洲天堂久久久| 人妻无码精品久久亚瑟影视| 国产精品久久亚洲不卡动漫| 久久夜色精品国产噜噜亚洲AV| 久久伊人五月天论坛| 久久高潮一级毛片免费| 久久久九九有精品国产| 久久久一本精品99久久精品88| 中文字幕无码久久精品青草| 久久伊人影视| 久久夜色精品国产亚洲av| 久久AⅤ人妻少妇嫩草影院| 一本一道久久精品综合| 办公室久久精品| 一本一道久久精品综合| 99久久精品无码一区二区毛片| 久久99热只有频精品8| 久久国产色AV免费观看| 久久久久亚洲精品天堂| 久久国产乱子精品免费女| 91久久婷婷国产综合精品青草 | 久久国产欧美日韩精品| 国产精品久久久天天影视|