??xml version="1.0" encoding="utf-8" standalone="yes"?>久久久久免费看成人影片,久久久久久综合网天天,国产精品美女久久久久http://www.shnenglu.com/zoyi-zhang/archive/2008/07/08/55630.htmlzoyizoyiTue, 08 Jul 2008 06:01:00 GMThttp://www.shnenglu.com/zoyi-zhang/archive/2008/07/08/55630.htmlhttp://www.shnenglu.com/zoyi-zhang/comments/55630.htmlhttp://www.shnenglu.com/zoyi-zhang/archive/2008/07/08/55630.html#Feedback1http://www.shnenglu.com/zoyi-zhang/comments/commentRss/55630.htmlhttp://www.shnenglu.com/zoyi-zhang/services/trackbacks/55630.htmlq道题是zp推荐的,说是一道动态规划题Q做完后觉得q就是我最不认为是dp的一Udp?他的思想和U给你一个地图,起始位置在左上角Q终点位|在右下角,每个位置上都有一定的宝藏Q规定了每次只能往双一步,或是往下走一步。。然后问你最后能取得的宝藏最大|开始我׃认ؓq种题是dpQ他的状态只会和前一状态有兟뀂?029q个题就是这样子的?br>
下面是我做这个题之前别h的提C,有几个关键字Q?br>2^n个状?n为列敎ͼ我们做到按行更新Q更C行的时候我们按列来Q如果更新到最后一列,则换下一行?br>更新当前行时和上一行有兟?br>
q两句话l了开始的模糊印象。。但是确实有Ҏ?br>
下面?a title="cpg2001 " >cpg2001  

用横U来划分阶段Q对于图一Q虽然划分后很整齐,但把某些砖分成了两半Q于是将他们也添加进来,于是变成了图二,其显得参差不齐,但最多也是向下突Z|在图三中Q我们将图二的空隙填满,则又转移C下一U状态?/span>

定义ȝ块状态ؓ1,否则?/span>0,则每行状态可以映到一个数(0,2^h})于是可徏立这L状?/span>a[ i Q?/span>j]Q表C第i行填满,W?/span>i+1行对应状态ؓj时的不同Ҏ敎ͼa[I,j]=?span>a[i-1,k]Q其中,状?span>k可导出状?span>j,初始化条?span>a[0,0]=1Q最?span>a[w,0]即ؓ所求?/span>


的启发,再加上zp的讲解逐渐清晰hQ?br>行数我们默认是从0开?/p>
W三行的赋值情?Q?00011
W四行的赋值情?Q?00100
W五行的赋值情?Q?11000
图一Q第三行填满了,W三行的W一个格子是一个竖形格子,q个竖Ş格子的上格子在第三行Q下格子在第四行Q于是在W四行需要补格子故置?Q第三行的第二个W三个格子是个横条,我们都置?Q紧接着又是一个竖形格子的上半个格子,同样?Q下面两个都是竖形格子的下半个置?
同理分别对W四行第五行赋?br>比如图二的第四行Q第二第三个两个q箋的零Q还有一U方案是摆一个横条?br>其他的详见注释?br>
我的代码Q?br>

#include<iostream>
#define max(a,b) (a
>b?a:b)
int N,M,maxl=0;
__int64 ans[
3000],tmp[3000];
void solve(
int j,int last,int now)
{
    
if(j>M)
    {
        tmp[
now]+=ans[last];
        maxl
=max(maxl,now);
        return;
    }
    
int up=(1<<(M-j))&last,uprt;
    
//up-->头顶上的那个格子状态,uprt-->头顶上的双的那个格子的状?br>    if(j==M)
    {
        
if(!up)solve(j+1,last,now*2+1);//剩一个空了,q且上面的那个是0Q那么显然是竖条
        
//q一行需要补一个小Ҏ
        
//如果上面?Q显然下面仍然是要接着一个竖条,但是q个方格是上面q半个,无需|?
        
else solve(j+1,last,now*2);
    }
    
else
    {
        uprt
=(1<<(M-j-1))&last;
        
if(!up)
        {
            solve(j
+1,last,now*2+1);
            
if(!uprt)//如果头顶上的不ؓ0Q头上双的也不ؓ0Q下面的可以放一个横?br>                solve(j+2,last,now*4);
        }
        
else//q个地方时很Ҏ出错的,我这里认为是Wj列置?
            
//可以理解为是一个竖形条状的上半个格子,也可以认为是一个横行条状的左半个格?br>            //q里千万不能把这两种情况分开计算Q这样会重复?br>            solve(j+1,last,now*2);
    }
}
            

int main()
{
    
int i,j;
    
while(scanf("%d%d",&N,&M)&&N)
    {
        
if((N*M)%2)
        {
            printf(
"0\n");
            continue;
        }
        memset(ans,
0,sizeof(ans));
        ans[
0]=1;
        
for(i=1;i<=N;i++)
        {
            memset(tmp,
0,sizeof(tmp));
            
for(j=0;j<=maxl;j++)
                
if(ans[j])solve(1,j,0);
            memcpy(ans,tmp,sizeof(tmp));
        }
        printf(
"%I64d\n",ans[0]);
    }
    return 
0;
}


zoyi 2008-07-08 14:01 发表评论
]]>
两道树Şdphttp://www.shnenglu.com/zoyi-zhang/archive/2008/05/03/48708.htmlzoyizoyiSat, 03 May 2008 07:45:00 GMThttp://www.shnenglu.com/zoyi-zhang/archive/2008/05/03/48708.htmlhttp://www.shnenglu.com/zoyi-zhang/comments/48708.htmlhttp://www.shnenglu.com/zoyi-zhang/archive/2008/05/03/48708.html#Feedback2http://www.shnenglu.com/zoyi-zhang/comments/commentRss/48708.htmlhttp://www.shnenglu.com/zoyi-zhang/services/trackbacks/48708.html阅读全文

zoyi 2008-05-03 15:45 发表评论
]]>
动态规?/title><link>http://www.shnenglu.com/zoyi-zhang/archive/2008/04/23/47932.html</link><dc:creator>zoyi</dc:creator><author>zoyi</author><pubDate>Wed, 23 Apr 2008 09:38:00 GMT</pubDate><guid>http://www.shnenglu.com/zoyi-zhang/archive/2008/04/23/47932.html</guid><wfw:comment>http://www.shnenglu.com/zoyi-zhang/comments/47932.html</wfw:comment><comments>http://www.shnenglu.com/zoyi-zhang/archive/2008/04/23/47932.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.shnenglu.com/zoyi-zhang/comments/commentRss/47932.html</wfw:commentRss><trackback:ping>http://www.shnenglu.com/zoyi-zhang/services/trackbacks/47932.html</trackback:ping><description><![CDATA[     摘要:   <a href='http://www.shnenglu.com/zoyi-zhang/archive/2008/04/23/47932.html'>阅读全文</a><img src ="http://www.shnenglu.com/zoyi-zhang/aggbug/47932.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.shnenglu.com/zoyi-zhang/" target="_blank">zoyi</a> 2008-04-23 17:38 <a href="http://www.shnenglu.com/zoyi-zhang/archive/2008/04/23/47932.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>l习9Q三Q?/title><link>http://www.shnenglu.com/zoyi-zhang/archive/2008/04/11/46791.html</link><dc:creator>zoyi</dc:creator><author>zoyi</author><pubDate>Thu, 10 Apr 2008 16:06:00 GMT</pubDate><guid>http://www.shnenglu.com/zoyi-zhang/archive/2008/04/11/46791.html</guid><wfw:comment>http://www.shnenglu.com/zoyi-zhang/comments/46791.html</wfw:comment><comments>http://www.shnenglu.com/zoyi-zhang/archive/2008/04/11/46791.html#Feedback</comments><slash:comments>2</slash:comments><wfw:commentRss>http://www.shnenglu.com/zoyi-zhang/comments/commentRss/46791.html</wfw:commentRss><trackback:ping>http://www.shnenglu.com/zoyi-zhang/services/trackbacks/46791.html</trackback:ping><description><![CDATA[都写了三份了Q实在不惛_重以前随W的负担<br>所以只好另L灶?br><a title="FQFace Formations" >FQFace Formations</a><br>q道题据说是l合数学的题Q但是我是用动态规划作?br>上windows实在听不q课Q就在草E纸上胡写ؕ画,莫名其妙的模拟出来了<br>主要我是要填表,状态方E,我不知道该怎么写,我模拟下q程好了Q?br>4<br>1 2 4 7<br> <div style="BORDER-RIGHT: #cccccc 1px solid; PADDING-RIGHT: 5px; BORDER-TOP: #cccccc 1px solid; PADDING-LEFT: 4px; FONT-SIZE: 13px; PADDING-BOTTOM: 4px; BORDER-LEFT: #cccccc 1px solid; WIDTH: 98%; WORD-BREAK: break-all; PADDING-TOP: 4px; BORDER-BOTTOM: #cccccc 1px solid; BACKGROUND-COLOR: #eeeeee"><span style="COLOR: #008080">1</span><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top><span style="COLOR: #000000">37</span><span style="COLOR: #000000"> </span><span style="COLOR: #000000">37</span><span style="COLOR: #000000"> </span><span style="COLOR: #000000">22</span><span style="COLOR: #000000"> </span><span style="COLOR: #000000">7</span><span style="COLOR: #000000"><br></span><span style="COLOR: #008080">2</span><span style="COLOR: #000000"><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top> </span><span style="COLOR: #000000">0</span><span style="COLOR: #000000"> </span><span style="COLOR: #000000">15</span><span style="COLOR: #000000"> </span><span style="COLOR: #000000">15</span><span style="COLOR: #000000"> </span><span style="COLOR: #000000">6</span><span style="COLOR: #000000"><br></span><span style="COLOR: #008080">3</span><span style="COLOR: #000000"><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top> </span><span style="COLOR: #000000">0</span><span style="COLOR: #000000">  </span><span style="COLOR: #000000">0</span><span style="COLOR: #000000">  </span><span style="COLOR: #000000">9</span><span style="COLOR: #000000"> </span><span style="COLOR: #000000">5</span><span style="COLOR: #000000"> <br></span><span style="COLOR: #008080">4</span><span style="COLOR: #000000"><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top> </span><span style="COLOR: #000000">0</span><span style="COLOR: #000000">  </span><span style="COLOR: #000000">0</span><span style="COLOR: #000000">  </span><span style="COLOR: #000000">4</span><span style="COLOR: #000000"> </span><span style="COLOR: #000000">4</span><span style="COLOR: #000000"><br></span><span style="COLOR: #008080">5</span><span style="COLOR: #000000"><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top> </span><span style="COLOR: #000000">0</span><span style="COLOR: #000000">  </span><span style="COLOR: #000000">0</span><span style="COLOR: #000000">  </span><span style="COLOR: #000000">0</span><span style="COLOR: #000000"> </span><span style="COLOR: #000000">3</span><span style="COLOR: #000000"><br></span><span style="COLOR: #008080">6</span><span style="COLOR: #000000"><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top> </span><span style="COLOR: #000000">0</span><span style="COLOR: #000000">  </span><span style="COLOR: #000000">0</span><span style="COLOR: #000000">  </span><span style="COLOR: #000000">0</span><span style="COLOR: #000000"> </span><span style="COLOR: #000000">2</span><span style="COLOR: #000000"><br></span><span style="COLOR: #008080">7</span><span style="COLOR: #000000"><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top> </span><span style="COLOR: #000000">0</span><span style="COLOR: #000000">  </span><span style="COLOR: #000000">0</span><span style="COLOR: #000000">  </span><span style="COLOR: #000000">0</span><span style="COLOR: #000000"> </span><span style="COLOR: #000000">1</span></div> ps: q个表我的填表过E是从下至上Q从双?br>l果是在[1][1]的位|上Q我代码实现的时候只开了一个数l,因ؓq不需要把整个表都存下?br>以下是我的代码:<br> <div style="BORDER-RIGHT: #cccccc 1px solid; PADDING-RIGHT: 5px; BORDER-TOP: #cccccc 1px solid; PADDING-LEFT: 4px; FONT-SIZE: 13px; PADDING-BOTTOM: 4px; BORDER-LEFT: #cccccc 1px solid; WIDTH: 98%; WORD-BREAK: break-all; PADDING-TOP: 4px; BORDER-BOTTOM: #cccccc 1px solid; BACKGROUND-COLOR: #eeeeee"><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top><span style="COLOR: #000000">#include</span><span style="COLOR: #000000"><</span><span style="COLOR: #000000">iostream</span><span style="COLOR: #000000">></span><span style="COLOR: #000000"><br><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top>#include</span><span style="COLOR: #000000"><</span><span style="COLOR: #000000">algorithm</span><span style="COLOR: #000000">></span><span style="COLOR: #000000"><br><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top>using namespace std;<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top>#define Max </span><span style="COLOR: #000000">35</span><span style="COLOR: #000000"><br><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top>__int64 num[Max],dice[Max];<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top>bool cmp(__int64 a,__int64 b)<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top>{<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top>    return a</span><span style="COLOR: #000000"><</span><span style="COLOR: #000000">b;<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top>}<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top>void solve(</span><span style="COLOR: #0000ff">int</span><span style="COLOR: #000000"> n)<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top>{<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top>    __int64 i,j;<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top>    </span><span style="COLOR: #0000ff">for</span><span style="COLOR: #000000">(i</span><span style="COLOR: #000000">=</span><span style="COLOR: #000000">1</span><span style="COLOR: #000000">;i</span><span style="COLOR: #000000"><=</span><span style="COLOR: #000000">dice[n];i</span><span style="COLOR: #000000">++</span><span style="COLOR: #000000">)<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top>        num[i]</span><span style="COLOR: #000000">=</span><span style="COLOR: #000000">1</span><span style="COLOR: #000000">;<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top>    </span><span style="COLOR: #0000ff">for</span><span style="COLOR: #000000">(i</span><span style="COLOR: #000000">=</span><span style="COLOR: #000000">n;i</span><span style="COLOR: #000000">>=</span><span style="COLOR: #000000">1</span><span style="COLOR: #000000">;i</span><span style="COLOR: #000000">--</span><span style="COLOR: #000000">)<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top>        </span><span style="COLOR: #0000ff">for</span><span style="COLOR: #000000">(j</span><span style="COLOR: #000000">=</span><span style="COLOR: #000000">dice[i]</span><span style="COLOR: #000000">-</span><span style="COLOR: #000000">1</span><span style="COLOR: #000000">;j</span><span style="COLOR: #000000">>=</span><span style="COLOR: #000000">0</span><span style="COLOR: #000000">;j</span><span style="COLOR: #000000">--</span><span style="COLOR: #000000">)<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top>            num[j]</span><span style="COLOR: #000000">+=</span><span style="COLOR: #000000">num[j</span><span style="COLOR: #000000">+</span><span style="COLOR: #000000">1</span><span style="COLOR: #000000">];<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top>}<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top></span><span style="COLOR: #0000ff">int</span><span style="COLOR: #000000"> main()<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top>{<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top>    </span><span style="COLOR: #0000ff">int</span><span style="COLOR: #000000"> n,i;<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top>    </span><span style="COLOR: #0000ff">while</span><span style="COLOR: #000000">(scanf(</span><span style="COLOR: #000000">"</span><span style="COLOR: #000000">%d</span><span style="COLOR: #000000">"</span><span style="COLOR: #000000">,</span><span style="COLOR: #000000">&</span><span style="COLOR: #000000">n)!</span><span style="COLOR: #000000">=</span><span style="COLOR: #000000">EOF</span><span style="COLOR: #000000">&&</span><span style="COLOR: #000000">n){<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top>        memset(dice,</span><span style="COLOR: #000000">0</span><span style="COLOR: #000000">,sizeof(dice));<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top>        memset(num,</span><span style="COLOR: #000000">0</span><span style="COLOR: #000000">,sizeof(num));<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top>        </span><span style="COLOR: #0000ff">for</span><span style="COLOR: #000000">(i</span><span style="COLOR: #000000">=</span><span style="COLOR: #000000">1</span><span style="COLOR: #000000">;i</span><span style="COLOR: #000000"><=</span><span style="COLOR: #000000">n;i</span><span style="COLOR: #000000">++</span><span style="COLOR: #000000">)<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top>            scanf(</span><span style="COLOR: #000000">"</span><span style="COLOR: #000000">%I64d</span><span style="COLOR: #000000">"</span><span style="COLOR: #000000">,</span><span style="COLOR: #000000">&</span><span style="COLOR: #000000">dice[i]);<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top>        sort(dice</span><span style="COLOR: #000000">+</span><span style="COLOR: #000000">1</span><span style="COLOR: #000000">,dice</span><span style="COLOR: #000000">+</span><span style="COLOR: #000000">n</span><span style="COLOR: #000000">+</span><span style="COLOR: #000000">1</span><span style="COLOR: #000000">,cmp);<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top>        solve(n);<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top>        printf(</span><span style="COLOR: #000000">"</span><span style="COLOR: #000000">%I64d\n</span><span style="COLOR: #000000">"</span><span style="COLOR: #000000">,num[</span><span style="COLOR: #000000">1</span><span style="COLOR: #000000">]);<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top>    }<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top>    return </span><span style="COLOR: #000000">0</span><span style="COLOR: #000000">;<br><img src="http://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top>}</span></div> <br>ps:q道题要Long long <img src ="http://www.shnenglu.com/zoyi-zhang/aggbug/46791.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.shnenglu.com/zoyi-zhang/" target="_blank">zoyi</a> 2008-04-11 00:06 <a href="http://www.shnenglu.com/zoyi-zhang/archive/2008/04/11/46791.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss> <footer> <div class="friendship-link"> <p>лǵվܻԴȤ</p> <a href="http://www.shnenglu.com/" title="精品视频久久久久">精品视频久久久久</a> <div class="friend-links"> </div> </div> </footer> <a href="http://www.ahhncl.cn" target="_blank">˾ƷۺϾþþ</a>| <a href="http://www.t55n3z.cn" target="_blank">þù׾Ʒǿ</a>| <a href="http://www.jkh7.cn" target="_blank">ŷҹͽþþ</a>| <a href="http://www.quheitou.net.cn" target="_blank">þþþ</a>| <a href="http://www.wanhejingshui.cn" target="_blank">þŮƷƷ</a>| <a href="http://www.hygaiye.cn" target="_blank">www.þ99</a>| <a href="http://www.ozxt.cn" target="_blank">þˬƬţţ</a>| <a href="http://www.cqmh.com.cn" target="_blank">޾ƷþþþĻ69 </a>| <a href="http://www.665m.cn" target="_blank">ٸۺϾþĻ</a>| <a href="http://www.bbsfccy168.cn" target="_blank">ŷ˾þþƷ</a>| <a href="http://www.utql.cn" target="_blank">þøݾƷԴվ</a>| <a href="http://www.paysearch.cn" target="_blank">þ޹վ</a>| <a href="http://www.damingxing.cn" target="_blank">avttþþƷ</a>| <a href="http://www.eu0i.cn" target="_blank">þ°Ҳȥ</a>| <a href="http://www.jjshjlbf.cn" target="_blank">ɫɫݺɫۺϾþ</a>| <a href="http://www.riyuelitian.cn" target="_blank">ŷ޹Ʒþþþ</a>| <a href="http://www.lenticular3d.cn" target="_blank">ƷþþþþӰԺ</a>| <a href="http://www.sxttzs.cn" target="_blank">Ʒþ¶</a>| <a href="http://www.kanqiuwang.cn" target="_blank">91Ʒþþþþ</a>| <a href="http://www.88kam.cn" target="_blank">vĻþ þһ ľþþþר </a>| <a href="http://www.fanglan-tech.cn" target="_blank">޹˾þþƷ99</a>| <a href="http://www.jfjn.net.cn" target="_blank">97þóƷɰ</a>| <a href="http://www.xiangzen.cn" target="_blank">Ʒþþþþþù˽ </a>| <a href="http://www.fti1st.com.cn" target="_blank">þֻоƷҳ</a>| <a href="http://www.jcwmt.cn" target="_blank">˾þþƷavһ</a>| <a href="http://www.25jt.cn" target="_blank">þwww˳_Ƭ</a>| <a href="http://www.tangwoshi.cn" target="_blank">˾þۺ</a>| <a href="http://www.17450.cn" target="_blank">þþƵ</a>| <a href="http://www.zqbd.com.cn" target="_blank">˳AVɫۺϾþ</a>| <a href="http://www.ttpcom.com.cn" target="_blank">޺ݺۺϾþѿ</a>| <a href="http://www.ycsxw.cn" target="_blank">þþþAVۿ</a>| <a href="http://www.pchenshimin.com.cn" target="_blank">޾Ʒþþwww</a>| <a href="http://www.kapatina.cn" target="_blank">þavСݲ</a>| <a href="http://www.hxstone.com.cn" target="_blank">ĻƷѾþþ</a>| <a href="http://www.ajemy.cn" target="_blank">91Ʒ9lþþþ</a>| <a href="http://www.ssgov.cn" target="_blank">˾þþƷһ </a>| <a href="http://www.anglein.cn" target="_blank">þۺɫ</a>| <a href="http://www.y7114.cn" target="_blank">ɫݺݾþAVۺ</a>| <a href="http://www.b42k.cn" target="_blank">Ʒѿþþ</a>| <a href="http://www.niuhongtao.cn" target="_blank">ɫۺϾþۺ</a>| <a href="http://www.zqek.cn" target="_blank">Ʒþþþû</a>| <script> (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })(); </script> </body>