• <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 閱讀(134) 評論(0)  編輯 收藏 引用
            国产午夜精品久久久久免费视| 久久精品这里只有精99品| 久久夜色精品国产噜噜麻豆 | 91精品国产高清久久久久久91| 曰曰摸天天摸人人看久久久| 免费精品久久久久久中文字幕| 狠狠色婷婷久久一区二区| 99久久精品费精品国产 | 国产精品99久久久久久董美香| 久久国产精品国语对白| 7777久久亚洲中文字幕| 久久人妻AV中文字幕| 国产伊人久久| 99久久国产免费福利| 久久精品国产亚洲av高清漫画 | 国内精品久久久久久久亚洲| 久久久无码人妻精品无码| 一本综合久久国产二区| 久久久WWW免费人成精品| 国产午夜久久影院| 中文字幕乱码人妻无码久久| 麻豆精品久久久久久久99蜜桃| 99久久精品国产一区二区蜜芽| 国产精品久久自在自线观看| 国内精品人妻无码久久久影院 | 色偷偷88欧美精品久久久| 久久精品无码av| 久久免费香蕉视频| 天天影视色香欲综合久久| 香蕉久久夜色精品国产2020 | 久久久午夜精品福利内容| 亚洲国产精品成人久久蜜臀| 无码人妻久久一区二区三区蜜桃| 久久无码一区二区三区少妇| 久久综合亚洲色HEZYO国产 | 99久久人妻无码精品系列| 91精品国产高清久久久久久io| 久久99国产精品一区二区| 久久综合久久综合久久| 精品无码人妻久久久久久| 欧美精品福利视频一区二区三区久久久精品|