锘??xml version="1.0" encoding="utf-8" standalone="yes"?>欧美一区免费,性欧美超级视频,在线一区视频http://m.shnenglu.com/vontroy/category/20306.htmlzh-cnThu, 12 Mar 2015 05:34:57 GMTThu, 12 Mar 2015 05:34:57 GMT60POJ 2653 Pick-up sticks 鍒ゆ柇綰挎鐩鎬氦http://m.shnenglu.com/vontroy/archive/2010/10/03/128488.htmlVontroyVontroySun, 03 Oct 2010 08:21:00 GMThttp://m.shnenglu.com/vontroy/archive/2010/10/03/128488.htmlhttp://m.shnenglu.com/vontroy/comments/128488.htmlhttp://m.shnenglu.com/vontroy/archive/2010/10/03/128488.html#Feedback0http://m.shnenglu.com/vontroy/comments/commentRss/128488.htmlhttp://m.shnenglu.com/vontroy/services/trackbacks/128488.htmlPick-up sticks
Time Limit: 3000MS Memory Limit: 65536K
Total Submissions: 4189 Accepted: 1501

Description

Stan has n sticks of various length. He throws them one at a time on the floor in a random way. After finishing throwing, Stan tries to find the top sticks, that is these sticks such that there is no stick on top of them. Stan has noticed that the last thrown stick is always on top but he wants to know all the sticks that are on top. Stan sticks are very, very thin such that their thickness can be neglected.                                                             
                                                                                                                                                                                      

Input

Input consists of a number of cases. The data for each case start with 1 <= n <= 100000, the number of sticks for this case. The following n lines contain four numbers each, these numbers are the planar coordinates of the endpoints of one stick. The sticks are listed in the order in which Stan has thrown them. You may assume that there are no more than 1000 top sticks. The input is ended by the case with n=0. This case should not be processed.

Output

For each input case, print one line of output listing the top sticks in the format given in the sample. The top sticks should be listed in order in which they were thrown.

The picture to the right below illustrates the first case from input.

Sample Input

5
1 1 4 2
2 3 3 1
1 -2.0 8 4
1 4 8 2
3 3 6 -2.0
3
0 0 1 1
1 0 2 1
2 0 3 1
0

Sample Output

Top sticks: 2, 4, 5.
Top sticks: 1, 2, 3.

Hint

Huge input,scanf is recommended.

/***********************************
鏆村姏灝辮錛屼粠絎竴涓紑濮嬪垽鏂?br />濡傛灉涓ゆ潯綰挎鐩鎬氦灝辨妸鍓嶉潰涓鏉$瓫閫夋帀
鍒ゆ柇綰挎鐩鎬氦鐩存帴璐寸殑鍚夊ぇ妯℃澘銆傘傘?br />**********************************
*/

#include 
<iostream>
#include 
<cstdio>
#include 
<cstring>

using namespace std;

const int maxn = 100000 + 5;
const double eps=1e-10;

struct point double x, y; };

point p[maxn], b[maxn];
bool ans[maxn];

double min(double a, double b) return a < b ? a : b; }

double max(double a, double b) return a > b ? a : b; }

bool inter(point a, point b, point c, point d)
{
    
if( min(a.x, b.x) > max(c.x, d.x) ||
        min(a.y, b.y) 
> max(c.y, d.y) ||
        min(c.x, d.x) 
> max(a.x, b.x) ||
        min(c.y, d.y) 
> max(a.y, b.y) )
    
return 0;

    
double h, i, j, k;

    h 
= (b.x - a.x) * (c.y - a.y) - (b.y - a.y) * (c.x - a.x);
    i 
= (b.x - a.x) * (d.y - a.y) - (b.y - a.y) * (d.x - a.x);
    j 
= (d.x - c.x) * (a.y - c.y) - (d.y - c.y) * (a.x - c.x);
    k 
= (d.x - c.x) * (b.y - c.y) - (d.y - c.y) * (b.x - c.x);

    
return h * i <= eps && j * k <= eps;
}


int main()
{
    
int n;
    
int res[maxn];
    
while( cin >> n, n )
    
{
        memset( ans, 
0sizeof( ans ) );
        
forint i = 0; i < n; i++ )
        
{
            cin 
>> p[i].x >> p[i].y >> b[i].x >> b[i].y;
        }


        
forint i = 0; i < n; i++ )
        
{
            
forint j = i + 1; j < n; j++ )
            
{
                
if( inter(p[i], b[i], p[j], b[j] ) )
                
{
                    ans[i] 
= 1;
                    
break;              //涓嶅姞break浼氳秴鏃躲傘傘?/span>
                }

            }

        }

        
int ct = 0;
        cout 
<< "Top sticks: ";
        
forint i = 0; i < n; i++ )
            
if!ans[i] )  res[ct++= i + 1;
        
forint i = 0; i < ct - 1; i++ )
            cout 
<< res[i] << "";
        cout 
<< res[ct-1<< "." << endl;
    }

    
return 0;
}



Vontroy 2010-10-03 16:21 鍙戣〃璇勮
]]>
POJ 1269 Intersecting Lines 鍒ゆ柇鐩寸嚎鐩鎬氦騫舵眰浜ょ偣http://m.shnenglu.com/vontroy/archive/2010/10/03/128429.htmlVontroyVontroySun, 03 Oct 2010 03:03:00 GMThttp://m.shnenglu.com/vontroy/archive/2010/10/03/128429.htmlhttp://m.shnenglu.com/vontroy/comments/128429.htmlhttp://m.shnenglu.com/vontroy/archive/2010/10/03/128429.html#Feedback0http://m.shnenglu.com/vontroy/comments/commentRss/128429.htmlhttp://m.shnenglu.com/vontroy/services/trackbacks/128429.html
Intersecting Lines

Time Limit: 1000MS Memory Limit: 10000K
Total Submissions: 4260 Accepted: 2049

Description

We all know that a pair of distinct points on a plane defines a line and that a pair of lines on a plane will intersect in one of three ways: 1) no intersection because they are parallel, 2) intersect in a line because they are on top of one another (i.e. they are the same line), 3) intersect in a point. In this problem you will use your algebraic knowledge to create a program that determines how and where two lines intersect.
Your program will repeatedly read in four points that define two lines in the x-y plane and determine how and where the lines intersect. All numbers required by this problem will be reasonable, say between -1000 and 1000.

Input

The first line contains an integer N between 1 and 10 describing how many pairs of lines are represented. The next N lines will each contain eight integers. These integers represent the coordinates of four points on the plane in the order x1y1x2y2x3y3x4y4. Thus each of these input lines represents two lines on the plane: the line through (x1,y1) and (x2,y2) and the line through (x3,y3) and (x4,y4). The point (x1,y1) is always distinct from (x2,y2). Likewise with (x3,y3) and (x4,y4).

Output

There should be N+2 lines of output. The first line of output should read INTERSECTING LINES OUTPUT. There will then be one line of output for each pair of planar lines represented by a line of input, describing how the lines intersect: none, line, or point. If the intersection is a point then your program should output the x and y coordinates of the point, correct to two decimal places. The final line of output should read "END OF OUTPUT".

Sample Input

5
0 0 4 4 0 4 4 0
5 0 7 6 1 0 2 3
5 0 7 6 3 -6 4 -3
2 0 2 27 1 5 18 5
0 3 4 0 1 2 2 5

Sample Output

INTERSECTING LINES OUTPUT
POINT 2.00 2.00
NONE
LINE
POINT 2.00 5.00
POINT 1.07 2.20
END OF OUTPUT
/*************************************
璁$畻鍑犱綍鍩虹棰橈紝鍒ゆ柇鐩寸嚎鐩鎬氦鍙婃眰浜ょ偣
娉ㄦ剰鏂滅巼涓嶅瓨鍦ㄧ殑鎯呭喌
*************************************
*/

#include 
<iostream>
#include 
<cstdio>

int main()
{
    
double x1, y1, x2, y2, x3, y3, x4, y4;
    
int n;
    
double k1, k2;
    
double b1, b2;
    
double i_x, i_y;
    scanf(
"%d"&n);
    std::cout 
<< "INTERSECTING LINES OUTPUT" << std::endl;
    
while( n-- )
    
{
        scanf(
"%lf%lf%lf%lf%lf%lf%lf%lf"&x1, &y1, &x2, &y2, &x3, &y3, &x4, &y4);

        
if( x1 != x2 && x3 != x4 )
        
{
            k1 
= ( y2 - y1 ) / ( x2 - x1 );
            k2 
= ( y4 - y3 ) / ( x4 - x3 );
            b1 
= y1 - k1 * x1;
            b2 
= y3 - k2 * x3;
            
if( k1 == k2 )
            
{
                
if( b1 == b2 )
                    printf(
"LINE\n");
                
else
                    printf(
"NONE\n");
            }

            
else
            
{
                i_x 
= (b2 - b1) / (k1 - k2);
                i_y 
= k1 * i_x + b1;
                printf(
"POINT %.2lf %.2lf\n", i_x, i_y);
            }

        }

        
else if( x1 == x2 && x3 == x4 )
        
{
            
if( x1 == x3 )
            std::cout 
<< "LINE\n";
            
else
            std::cout 
<< "NONE\n";
        }

        
else if( x1 == x2 && x3 != x4 )
        
{
            k2 
= ( y4 - y3 ) / ( x4 - x3 );
            b2 
= y3 - k2 * x3;
            i_x 
= x1;
            i_y 
= k2 * x1 + b2;
            printf(
"POINT %.2lf %.2lf\n", i_x, i_y);
        }

        
else
        
{
            k1 
= ( y2 - y1 ) / ( x2 - x1 );
            b1 
= y1 - k1 * x1;
            i_x 
= x3;
            i_y 
= k1 * x3 + b1;
            printf(
"POINT %.2lf %.2lf\n", i_x, i_y);
        }

    }

    std::cout 
<< "END OF OUTPUT\n";
    
return 0;
}



Vontroy 2010-10-03 11:03 鍙戣〃璇勮
]]>
POJ 1007 DNA Sorting 瀛楃涓插鐞唡紼沖畾鎺掑簭http://m.shnenglu.com/vontroy/archive/2010/10/02/128354.htmlVontroyVontroySat, 02 Oct 2010 13:23:00 GMThttp://m.shnenglu.com/vontroy/archive/2010/10/02/128354.htmlhttp://m.shnenglu.com/vontroy/comments/128354.htmlhttp://m.shnenglu.com/vontroy/archive/2010/10/02/128354.html#Feedback0http://m.shnenglu.com/vontroy/comments/commentRss/128354.htmlhttp://m.shnenglu.com/vontroy/services/trackbacks/128354.html/*****************
瀛楃涓插鐞?br />紼沖畾鎺掑簭
*****************
*/


#include 
<iostream>
#include 
<algorithm>
#include 
<string>

using namespace std;

struct DNA
{
    
int pos;
    
int cnt;
    
string str;
}
;

bool cmp(const DNA &a, const DNA &b)
{
    
if (a.cnt != b.cnt)
    
{
        
return a.cnt < b.cnt;
    }

    
else
    
{
        
return a.pos < b.pos;
    }

}


int main()
{
    
int n, m, count;
    DNA ans[
110];
    
string str;
    cin 
>> n >> m;

    
for (int i = 0; i < m; i++)
    
{
        cin 
>> str;
        count 
= 0;
        
        
for (int j = 0; j < n - 1; j++)
            
for (int k = j + 1; k < n; k++)
                
if (str[j] > str[k]) count++;
                
        ans[i].str 
= str;
        ans[i].cnt 
= count;
        ans[i].pos 
= i;
    }


    sort(ans, ans 
+ m, cmp);

    
for (int i = 0; i < m; i++)
        cout 
<< ans[i].str << endl;

    
return 0;
}



Vontroy 2010-10-02 21:23 鍙戣〃璇勮
]]>
POJ 1006 Biorhythms 涓浗鍓╀綑瀹氱悊http://m.shnenglu.com/vontroy/archive/2010/10/02/128347.htmlVontroyVontroySat, 02 Oct 2010 12:18:00 GMThttp://m.shnenglu.com/vontroy/archive/2010/10/02/128347.htmlhttp://m.shnenglu.com/vontroy/comments/128347.htmlhttp://m.shnenglu.com/vontroy/archive/2010/10/02/128347.html#Feedback0http://m.shnenglu.com/vontroy/comments/commentRss/128347.htmlhttp://m.shnenglu.com/vontroy/services/trackbacks/128347.html/***************************************
姣旇緝緇忓吀鐨勪腑鍥藉墿浣欏畾鐞唦~

浣?3×28琚?3闄や綑1錛岀敤33×28×6=5544

浣?3×33琚?8闄や綑1錛岀敤23×33×19=14421

浣?3×28琚?3闄や綑1錛岀敤23×28×2=1288

錛?544×p+14421×e+1288×i錛?錛?3×28×33錛?n+d

n=錛?544×p+14421×e+1288×i-d錛?錛?3×28×33錛?br />***************************************
*/


#include 
<iostream>
#include 
<cstdio>

using std :: cin;
using std :: cout;
using std :: endl;

int get__( int a, int b, int c )
{
    
int ans;
    
int cnt = 1;
    
while( ( a * b * cnt ) % c != 1 )
    
{
        cnt
++;
    }

    
return a * b * cnt;
}


int main()
{
    
int _p = get__( 283323 );
    
int _e = get__( 233328 );
    
int _i = get__( 232833 );

    
int p, e, i, d;
    
int cas = 1;
    
while( cin >> p >> e >> i >> d )
    
{
        
if( p == e && e == i && i == d && d == -1 ) break;
        
int ans = ( _p * p + _e * e + _i * i - d ) % ( 23 * 28 * 33 );
        
if( ans <= 0 )
            printf(
"Case %d: the next triple peak occurs in %d days.\n", cas++21252 - ans - 2 * d);
        
else
            printf(
"Case %d: the next triple peak occurs in %d days.\n", cas++, ans);
    }

    
return 0;
}



Vontroy 2010-10-02 20:18 鍙戣〃璇勮
]]>
POJ 1005 I Think I Need a Houseboathttp://m.shnenglu.com/vontroy/archive/2010/10/02/128345.htmlVontroyVontroySat, 02 Oct 2010 11:57:00 GMThttp://m.shnenglu.com/vontroy/archive/2010/10/02/128345.htmlhttp://m.shnenglu.com/vontroy/comments/128345.htmlhttp://m.shnenglu.com/vontroy/archive/2010/10/02/128345.html#Feedback0http://m.shnenglu.com/vontroy/comments/commentRss/128345.htmlhttp://m.shnenglu.com/vontroy/services/trackbacks/128345.html 

/******************************************
璁鵑渶瑕乶騫?br />璁懼崐鍦嗛潰縐負 S錛屽崐寰勪負 r
S = 50 * n;
S = (PI * r * r) / 2;
瑙e緱 n = (PI * r * r ) / 100;
鎵緇欑偣鍒板師鐐硅窛紱?nbsp;len = sqrt( x * x + y * y );
浠en = r鍗沖彲瑙e嚭 n
******************************************
*/


#include 
<iostream>
#include 
<cstdio>
#include 
<cmath>

const double PI = 3.1415927;

using namespace std;

int main()
{
    
double x, y;
    
int cnt;

    cin 
>> cnt;
    
int pro = 1;
    
while( cnt-- )
    
{
        cin 
>> x >> y;
        
double len = sqrt( x * x + y * y );
        
int n = (PI * len * len ) / (100 * 1.0);
        printf(
"Property %d: This property will begin eroding in year %d.\n", pro++, n + 1);
    }

    cout 
<< "END OF OUTPUT.\n";
    
return 0;
}



Vontroy 2010-10-02 19:57 鍙戣〃璇勮
]]>
POJ 1004 Financial Managementhttp://m.shnenglu.com/vontroy/archive/2010/10/02/128342.htmlVontroyVontroySat, 02 Oct 2010 11:31:00 GMThttp://m.shnenglu.com/vontroy/archive/2010/10/02/128342.htmlhttp://m.shnenglu.com/vontroy/comments/128342.htmlhttp://m.shnenglu.com/vontroy/archive/2010/10/02/128342.html#Feedback0http://m.shnenglu.com/vontroy/comments/commentRss/128342.htmlhttp://m.shnenglu.com/vontroy/services/trackbacks/128342.html#include <iostream>
#include 
<cstdio>

using std :: cin;
using std :: cout;
using std :: endl;

int main()
{
    
double ans;
    
double tmp;
    ans 
= 0;
    
forint i = 0; i < 12; i++ )
    
{
        cin 
>> tmp;
        ans 
+= tmp;
    }

    cout 
<< "$" << ans / 12.0<< endl;
    
return 0;
}



Vontroy 2010-10-02 19:31 鍙戣〃璇勮
]]>
POJ 1002 487-3279 瀛楃涓插鐞?/title><link>http://m.shnenglu.com/vontroy/archive/2010/10/02/128340.html</link><dc:creator>Vontroy</dc:creator><author>Vontroy</author><pubDate>Sat, 02 Oct 2010 11:21:00 GMT</pubDate><guid>http://m.shnenglu.com/vontroy/archive/2010/10/02/128340.html</guid><wfw:comment>http://m.shnenglu.com/vontroy/comments/128340.html</wfw:comment><comments>http://m.shnenglu.com/vontroy/archive/2010/10/02/128340.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://m.shnenglu.com/vontroy/comments/commentRss/128340.html</wfw:commentRss><trackback:ping>http://m.shnenglu.com/vontroy/services/trackbacks/128340.html</trackback:ping><description><![CDATA[<div style="border-bottom: #cccccc 1px solid; border-left: #cccccc 1px solid; padding-bottom: 4px; background-color: #eeeeee; padding-left: 4px; width: 98%; padding-right: 5px; font-size: 13px; word-break: break-all; border-top: #cccccc 1px solid; border-right: #cccccc 1px solid; padding-top: 4px"><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/None.gif" alt="" /><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 align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/None.gif" alt="" />#include </span><span style="color: #000000"><</span><span style="color: #0000ff">string</span><span style="color: #000000">></span><span style="color: #000000"><br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/None.gif" alt="" />#include </span><span style="color: #000000"><</span><span style="color: #000000">algorithm</span><span style="color: #000000">></span><span style="color: #000000"><br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/None.gif" alt="" />#include </span><span style="color: #000000"><</span><span style="color: #000000">cstdio</span><span style="color: #000000">></span><span style="color: #000000"><br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/None.gif" alt="" /><br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/None.gif" alt="" /></span><span style="color: #0000ff">const</span><span style="color: #000000"> </span><span style="color: #0000ff">int</span><span style="color: #000000"> maxn </span><span style="color: #000000">=</span><span style="color: #000000"> </span><span style="color: #000000">20000</span><span style="color: #000000">;<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/None.gif" alt="" /></span><span style="color: #0000ff">const</span><span style="color: #000000"> </span><span style="color: #0000ff">int</span><span style="color: #000000"> MAXN </span><span style="color: #000000">=</span><span style="color: #000000"> </span><span style="color: #000000">100000</span><span style="color: #000000">+</span><span style="color: #000000">10</span><span style="color: #000000">;<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/None.gif" alt="" /><br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/None.gif" alt="" /></span><span style="color: #0000ff">using</span><span style="color: #000000"> std :: </span><span style="color: #0000ff">string</span><span style="color: #000000">;<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/None.gif" alt="" /></span><span style="color: #0000ff">using</span><span style="color: #000000"> std :: cout;<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/None.gif" alt="" /></span><span style="color: #0000ff">using</span><span style="color: #000000"> std :: endl;<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/None.gif" alt="" /><br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/None.gif" alt="" /></span><span style="color: #0000ff">int</span><span style="color: #000000"> main()<br /><img id="Codehighlighter1_202_2379_Open_Image" onclick="this.style.display='none'; Codehighlighter1_202_2379_Open_Text.style.display='none'; Codehighlighter1_202_2379_Closed_Image.style.display='inline'; Codehighlighter1_202_2379_Closed_Text.style.display='inline';" align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedBlockStart.gif"><img style="display: none" id="Codehighlighter1_202_2379_Closed_Image" onclick="this.style.display='none'; Codehighlighter1_202_2379_Closed_Text.style.display='none'; Codehighlighter1_202_2379_Open_Image.style.display='inline'; Codehighlighter1_202_2379_Open_Text.style.display='inline';" align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/ContractedBlock.gif"></span><span style="border-bottom: #808080 1px solid; border-left: #808080 1px solid; background-color: #ffffff; display: none; border-top: #808080 1px solid; border-right: #808080 1px solid" id="Codehighlighter1_202_2379_Closed_Text"><img src="http://m.shnenglu.com/Images/dot.gif" alt="" /></span><span id="Codehighlighter1_202_2379_Open_Text"><span style="color: #000000">{<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />    </span><span style="color: #0000ff">string</span><span style="color: #000000"> ans[MAXN];<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />    </span><span style="color: #0000ff">char</span><span style="color: #000000"> tel[maxn];<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />    </span><span style="color: #0000ff">char</span><span style="color: #000000"> store[maxn];<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />    </span><span style="color: #0000ff">int</span><span style="color: #000000"> n;<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />    </span><span style="color: #0000ff">bool</span><span style="color: #000000"> ok;<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />   </span><span style="color: #0000ff">while</span><span style="color: #000000">(</span><span style="color: #000000">~</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))<br /><img id="Codehighlighter1_323_2363_Open_Image" onclick="this.style.display='none'; Codehighlighter1_323_2363_Open_Text.style.display='none'; Codehighlighter1_323_2363_Closed_Image.style.display='inline'; Codehighlighter1_323_2363_Closed_Text.style.display='inline';" align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockStart.gif"><img style="display: none" id="Codehighlighter1_323_2363_Closed_Image" onclick="this.style.display='none'; Codehighlighter1_323_2363_Closed_Text.style.display='none'; Codehighlighter1_323_2363_Open_Image.style.display='inline'; Codehighlighter1_323_2363_Open_Text.style.display='inline';" align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/ContractedSubBlock.gif">    </span><span style="border-bottom: #808080 1px solid; border-left: #808080 1px solid; background-color: #ffffff; display: none; border-top: #808080 1px solid; border-right: #808080 1px solid" id="Codehighlighter1_323_2363_Closed_Text"><img src="http://m.shnenglu.com/Images/dot.gif" alt="" /></span><span id="Codehighlighter1_323_2363_Open_Text"><span style="color: #000000">{<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />        ok </span><span style="color: #000000">=</span><span style="color: #000000"> </span><span style="color: #0000ff">false</span><span style="color: #000000">;<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />        </span><span style="color: #0000ff">int</span><span style="color: #000000"> count </span><span style="color: #000000">=</span><span style="color: #000000"> </span><span style="color: #000000">0</span><span style="color: #000000">;<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />        </span><span style="color: #0000ff">while</span><span style="color: #000000">(n</span><span style="color: #000000">--</span><span style="color: #000000">)<br /><img id="Codehighlighter1_395_1730_Open_Image" onclick="this.style.display='none'; Codehighlighter1_395_1730_Open_Text.style.display='none'; Codehighlighter1_395_1730_Closed_Image.style.display='inline'; Codehighlighter1_395_1730_Closed_Text.style.display='inline';" align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockStart.gif"><img style="display: none" id="Codehighlighter1_395_1730_Closed_Image" onclick="this.style.display='none'; Codehighlighter1_395_1730_Closed_Text.style.display='none'; Codehighlighter1_395_1730_Open_Image.style.display='inline'; Codehighlighter1_395_1730_Open_Text.style.display='inline';" align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/ContractedSubBlock.gif">        </span><span style="border-bottom: #808080 1px solid; border-left: #808080 1px solid; background-color: #ffffff; display: none; border-top: #808080 1px solid; border-right: #808080 1px solid" id="Codehighlighter1_395_1730_Closed_Text"><img src="http://m.shnenglu.com/Images/dot.gif" alt="" /></span><span id="Codehighlighter1_395_1730_Open_Text"><span style="color: #000000">{<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />            scanf(</span><span style="color: #000000">"</span><span style="color: #000000">%s</span><span style="color: #000000">"</span><span style="color: #000000">,tel);<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />            </span><span style="color: #0000ff">int</span><span style="color: #000000"> j;<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />            </span><span style="color: #0000ff">for</span><span style="color: #000000">(</span><span style="color: #0000ff">int</span><span style="color: #000000"> i </span><span style="color: #000000">=</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"> </span><span style="color: #000000">0</span><span style="color: #000000">; tel[i] </span><span style="color: #000000">!=</span><span style="color: #000000"> </span><span style="color: #000000">'</span><span style="color: #000000">\0</span><span style="color: #000000">'</span><span style="color: #000000">; i</span><span style="color: #000000">++</span><span style="color: #000000">)<br /><img id="Codehighlighter1_512_1686_Open_Image" onclick="this.style.display='none'; Codehighlighter1_512_1686_Open_Text.style.display='none'; Codehighlighter1_512_1686_Closed_Image.style.display='inline'; Codehighlighter1_512_1686_Closed_Text.style.display='inline';" align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockStart.gif"><img style="display: none" id="Codehighlighter1_512_1686_Closed_Image" onclick="this.style.display='none'; Codehighlighter1_512_1686_Closed_Text.style.display='none'; Codehighlighter1_512_1686_Open_Image.style.display='inline'; Codehighlighter1_512_1686_Open_Text.style.display='inline';" align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/ContractedSubBlock.gif">            </span><span style="border-bottom: #808080 1px solid; border-left: #808080 1px solid; background-color: #ffffff; display: none; border-top: #808080 1px solid; border-right: #808080 1px solid" id="Codehighlighter1_512_1686_Closed_Text"><img src="http://m.shnenglu.com/Images/dot.gif" alt="" /></span><span id="Codehighlighter1_512_1686_Open_Text"><span style="color: #000000">{<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />                </span><span style="color: #0000ff">if</span><span style="color: #000000">(tel[i]</span><span style="color: #000000">-</span><span style="color: #000000">'</span><span style="color: #000000">0</span><span style="color: #000000">'</span><span style="color: #000000">>=</span><span style="color: #000000">0</span><span style="color: #000000">&&</span><span style="color: #000000">tel[i]</span><span style="color: #000000">-</span><span style="color: #000000">'</span><span style="color: #000000">0</span><span style="color: #000000">'</span><span style="color: #000000"><=</span><span style="color: #000000">9</span><span style="color: #000000">)<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />                      store[j</span><span style="color: #000000">++</span><span style="color: #000000">] </span><span style="color: #000000">=</span><span style="color: #000000"> tel[i];<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />                </span><span style="color: #0000ff">else</span><span style="color: #000000"> </span><span style="color: #0000ff">if</span><span style="color: #000000">(tel[i] </span><span style="color: #000000">!=</span><span style="color: #000000"> </span><span style="color: #000000">'</span><span style="color: #000000">-</span><span style="color: #000000">'</span><span style="color: #000000"> </span><span style="color: #000000">&&</span><span style="color: #000000"> j </span><span style="color: #000000">!=</span><span style="color: #000000"> </span><span style="color: #000000">3</span><span style="color: #000000"> )<br /><img id="Codehighlighter1_672_1628_Open_Image" onclick="this.style.display='none'; Codehighlighter1_672_1628_Open_Text.style.display='none'; Codehighlighter1_672_1628_Closed_Image.style.display='inline'; Codehighlighter1_672_1628_Closed_Text.style.display='inline';" align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockStart.gif"><img style="display: none" id="Codehighlighter1_672_1628_Closed_Image" onclick="this.style.display='none'; Codehighlighter1_672_1628_Closed_Text.style.display='none'; Codehighlighter1_672_1628_Open_Image.style.display='inline'; Codehighlighter1_672_1628_Open_Text.style.display='inline';" align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/ContractedSubBlock.gif">                </span><span style="border-bottom: #808080 1px solid; border-left: #808080 1px solid; background-color: #ffffff; display: none; border-top: #808080 1px solid; border-right: #808080 1px solid" id="Codehighlighter1_672_1628_Closed_Text"><img src="http://m.shnenglu.com/Images/dot.gif" alt="" /></span><span id="Codehighlighter1_672_1628_Open_Text"><span style="color: #000000">{<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />                    </span><span style="color: #008000">//</span><span style="color: #008000">ans[count]+='2';</span><span style="color: #008000"><br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" /></span><span style="color: #000000">                    </span><span style="color: #0000ff">if</span><span style="color: #000000">(tel[i]</span><span style="color: #000000">==</span><span style="color: #000000">'</span><span style="color: #000000">A</span><span style="color: #000000">'</span><span style="color: #000000">||</span><span style="color: #000000">tel[i]</span><span style="color: #000000">==</span><span style="color: #000000">'</span><span style="color: #000000">B</span><span style="color: #000000">'</span><span style="color: #000000">||</span><span style="color: #000000">tel[i]</span><span style="color: #000000">==</span><span style="color: #000000">'</span><span style="color: #000000">C</span><span style="color: #000000">'</span><span style="color: #000000">)<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />                            store[j</span><span style="color: #000000">++</span><span style="color: #000000">] </span><span style="color: #000000">=</span><span style="color: #000000"> </span><span style="color: #000000">'</span><span style="color: #000000">2</span><span style="color: #000000">'</span><span style="color: #000000">;<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />                    </span><span style="color: #0000ff">else</span><span style="color: #000000"> </span><span style="color: #0000ff">if</span><span style="color: #000000">(tel[i]</span><span style="color: #000000">==</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">tel[i]</span><span style="color: #000000">==</span><span style="color: #000000">'</span><span style="color: #000000">E</span><span style="color: #000000">'</span><span style="color: #000000">||</span><span style="color: #000000">tel[i]</span><span style="color: #000000">==</span><span style="color: #000000">'</span><span style="color: #000000">F</span><span style="color: #000000">'</span><span style="color: #000000">)<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />                            store[j</span><span style="color: #000000">++</span><span style="color: #000000">] </span><span style="color: #000000">=</span><span style="color: #000000"> </span><span style="color: #000000">'</span><span style="color: #000000">3</span><span style="color: #000000">'</span><span style="color: #000000">;<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />                    </span><span style="color: #0000ff">else</span><span style="color: #000000"> </span><span style="color: #0000ff">if</span><span style="color: #000000">(tel[i]</span><span style="color: #000000">==</span><span style="color: #000000">'</span><span style="color: #000000">G</span><span style="color: #000000">'</span><span style="color: #000000">||</span><span style="color: #000000">tel[i]</span><span style="color: #000000">==</span><span style="color: #000000">'</span><span style="color: #000000">H</span><span style="color: #000000">'</span><span style="color: #000000">||</span><span style="color: #000000">tel[i]</span><span style="color: #000000">==</span><span style="color: #000000">'</span><span style="color: #000000">I</span><span style="color: #000000">'</span><span style="color: #000000">)<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />                            store[j</span><span style="color: #000000">++</span><span style="color: #000000">] </span><span style="color: #000000">=</span><span style="color: #000000"> </span><span style="color: #000000">'</span><span style="color: #000000">4</span><span style="color: #000000">'</span><span style="color: #000000">;<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />                    </span><span style="color: #0000ff">else</span><span style="color: #000000"> </span><span style="color: #0000ff">if</span><span style="color: #000000">(tel[i]</span><span style="color: #000000">==</span><span style="color: #000000">'</span><span style="color: #000000">J</span><span style="color: #000000">'</span><span style="color: #000000">||</span><span style="color: #000000">tel[i]</span><span style="color: #000000">==</span><span style="color: #000000">'</span><span style="color: #000000">K</span><span style="color: #000000">'</span><span style="color: #000000">||</span><span style="color: #000000">tel[i]</span><span style="color: #000000">==</span><span style="color: #000000">'</span><span style="color: #000000">L</span><span style="color: #000000">'</span><span style="color: #000000">)<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />                            store[j</span><span style="color: #000000">++</span><span style="color: #000000">] </span><span style="color: #000000">=</span><span style="color: #000000"> </span><span style="color: #000000">'</span><span style="color: #000000">5</span><span style="color: #000000">'</span><span style="color: #000000">;<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />                    </span><span style="color: #0000ff">else</span><span style="color: #000000"> </span><span style="color: #0000ff">if</span><span style="color: #000000">(tel[i]</span><span style="color: #000000">==</span><span style="color: #000000">'</span><span style="color: #000000">M</span><span style="color: #000000">'</span><span style="color: #000000">||</span><span style="color: #000000">tel[i]</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">||</span><span style="color: #000000">tel[i]</span><span style="color: #000000">==</span><span style="color: #000000">'</span><span style="color: #000000">O</span><span style="color: #000000">'</span><span style="color: #000000">)<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />                            store[j</span><span style="color: #000000">++</span><span style="color: #000000">] </span><span style="color: #000000">=</span><span style="color: #000000"> </span><span style="color: #000000">'</span><span style="color: #000000">6</span><span style="color: #000000">'</span><span style="color: #000000">;<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />                    </span><span style="color: #0000ff">else</span><span style="color: #000000"> </span><span style="color: #0000ff">if</span><span style="color: #000000">(tel[i]</span><span style="color: #000000">==</span><span style="color: #000000">'</span><span style="color: #000000">P</span><span style="color: #000000">'</span><span style="color: #000000">||</span><span style="color: #000000">tel[i]</span><span style="color: #000000">==</span><span style="color: #000000">'</span><span style="color: #000000">R</span><span style="color: #000000">'</span><span style="color: #000000">||</span><span style="color: #000000">tel[i]</span><span style="color: #000000">==</span><span style="color: #000000">'</span><span style="color: #000000">S</span><span style="color: #000000">'</span><span style="color: #000000">)<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />                            store[j</span><span style="color: #000000">++</span><span style="color: #000000">] </span><span style="color: #000000">=</span><span style="color: #000000"> </span><span style="color: #000000">'</span><span style="color: #000000">7</span><span style="color: #000000">'</span><span style="color: #000000">;<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />                    </span><span style="color: #0000ff">else</span><span style="color: #000000"> </span><span style="color: #0000ff">if</span><span style="color: #000000">(tel[i]</span><span style="color: #000000">==</span><span style="color: #000000">'</span><span style="color: #000000">T</span><span style="color: #000000">'</span><span style="color: #000000">||</span><span style="color: #000000">tel[i]</span><span style="color: #000000">==</span><span style="color: #000000">'</span><span style="color: #000000">U</span><span style="color: #000000">'</span><span style="color: #000000">||</span><span style="color: #000000">tel[i]</span><span style="color: #000000">==</span><span style="color: #000000">'</span><span style="color: #000000">V</span><span style="color: #000000">'</span><span style="color: #000000">)<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />                            store[j</span><span style="color: #000000">++</span><span style="color: #000000">] </span><span style="color: #000000">=</span><span style="color: #000000"> </span><span style="color: #000000">'</span><span style="color: #000000">8</span><span style="color: #000000">'</span><span style="color: #000000">;<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />                    </span><span style="color: #0000ff">else</span><span style="color: #000000"> </span><span style="color: #0000ff">if</span><span style="color: #000000">(tel[i]</span><span style="color: #000000">==</span><span style="color: #000000">'</span><span style="color: #000000">W</span><span style="color: #000000">'</span><span style="color: #000000">||</span><span style="color: #000000">tel[i]</span><span style="color: #000000">==</span><span style="color: #000000">'</span><span style="color: #000000">X</span><span style="color: #000000">'</span><span style="color: #000000">||</span><span style="color: #000000">tel[i]</span><span style="color: #000000">==</span><span style="color: #000000">'</span><span style="color: #000000">Y</span><span style="color: #000000">'</span><span style="color: #000000">)<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />                            store[j</span><span style="color: #000000">++</span><span style="color: #000000">] </span><span style="color: #000000">=</span><span style="color: #000000"> </span><span style="color: #000000">'</span><span style="color: #000000">9</span><span style="color: #000000">'</span><span style="color: #000000">;<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockEnd.gif" alt="" />                }</span></span><span style="color: #000000"><br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />                </span><span style="color: #0000ff">if</span><span style="color: #000000">( j</span><span style="color: #000000">==</span><span style="color: #000000">3</span><span style="color: #000000"> )  store[j</span><span style="color: #000000">++</span><span style="color: #000000">]</span><span style="color: #000000">=</span><span style="color: #000000">'</span><span style="color: #000000">-</span><span style="color: #000000">'</span><span style="color: #000000">;<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockEnd.gif" alt="" />            }</span></span><span style="color: #000000"><br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />            ans[count</span><span style="color: #000000">++</span><span style="color: #000000">] </span><span style="color: #000000">=</span><span style="color: #000000"> store;<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockEnd.gif" alt="" />        }</span></span><span style="color: #000000"><br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />        std :: sort(ans,ans</span><span style="color: #000000">+</span><span style="color: #000000">count);<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />        </span><span style="color: #0000ff">int</span><span style="color: #000000"> ans_count;<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />        </span><span style="color: #0000ff">for</span><span style="color: #000000">(</span><span style="color: #0000ff">int</span><span style="color: #000000"> i </span><span style="color: #000000">=</span><span style="color: #000000"> </span><span style="color: #000000">0</span><span style="color: #000000">; i </span><span style="color: #000000"><</span><span style="color: #000000"> count; i</span><span style="color: #000000">++</span><span style="color: #000000">)<br /><img id="Codehighlighter1_1838_2217_Open_Image" onclick="this.style.display='none'; Codehighlighter1_1838_2217_Open_Text.style.display='none'; Codehighlighter1_1838_2217_Closed_Image.style.display='inline'; Codehighlighter1_1838_2217_Closed_Text.style.display='inline';" align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockStart.gif"><img style="display: none" id="Codehighlighter1_1838_2217_Closed_Image" onclick="this.style.display='none'; Codehighlighter1_1838_2217_Closed_Text.style.display='none'; Codehighlighter1_1838_2217_Open_Image.style.display='inline'; Codehighlighter1_1838_2217_Open_Text.style.display='inline';" align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/ContractedSubBlock.gif">        </span><span style="border-bottom: #808080 1px solid; border-left: #808080 1px solid; background-color: #ffffff; display: none; border-top: #808080 1px solid; border-right: #808080 1px solid" id="Codehighlighter1_1838_2217_Closed_Text"><img src="http://m.shnenglu.com/Images/dot.gif" alt="" /></span><span id="Codehighlighter1_1838_2217_Open_Text"><span style="color: #000000">{<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />             ans_count </span><span style="color: #000000">=</span><span style="color: #000000"> </span><span style="color: #000000">1</span><span style="color: #000000">;<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />             </span><span style="color: #0000ff">for</span><span style="color: #000000">(</span><span style="color: #0000ff">int</span><span style="color: #000000"> j </span><span style="color: #000000">=</span><span style="color: #000000"> i </span><span style="color: #000000">+</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"> count; j</span><span style="color: #000000">++</span><span style="color: #000000">)<br /><img id="Codehighlighter1_1929_2022_Open_Image" onclick="this.style.display='none'; Codehighlighter1_1929_2022_Open_Text.style.display='none'; Codehighlighter1_1929_2022_Closed_Image.style.display='inline'; Codehighlighter1_1929_2022_Closed_Text.style.display='inline';" align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockStart.gif"><img style="display: none" id="Codehighlighter1_1929_2022_Closed_Image" onclick="this.style.display='none'; Codehighlighter1_1929_2022_Closed_Text.style.display='none'; Codehighlighter1_1929_2022_Open_Image.style.display='inline'; Codehighlighter1_1929_2022_Open_Text.style.display='inline';" align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/ContractedSubBlock.gif">             </span><span style="border-bottom: #808080 1px solid; border-left: #808080 1px solid; background-color: #ffffff; display: none; border-top: #808080 1px solid; border-right: #808080 1px solid" id="Codehighlighter1_1929_2022_Closed_Text"><img src="http://m.shnenglu.com/Images/dot.gif" alt="" /></span><span id="Codehighlighter1_1929_2022_Open_Text"><span style="color: #000000">{<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />                 </span><span style="color: #0000ff">if</span><span style="color: #000000">(ans[j]</span><span style="color: #000000">==</span><span style="color: #000000">ans[i]) ans_count</span><span style="color: #000000">++</span><span style="color: #000000">;<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />                 </span><span style="color: #0000ff">else</span><span style="color: #000000"> </span><span style="color: #0000ff">break</span><span style="color: #000000">;<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockEnd.gif" alt="" />             }</span></span><span style="color: #000000"><br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />             </span><span style="color: #0000ff">if</span><span style="color: #000000">(ans_count </span><span style="color: #000000">></span><span style="color: #000000"> </span><span style="color: #000000">1</span><span style="color: #000000">)<br /><img id="Codehighlighter1_2068_2207_Open_Image" onclick="this.style.display='none'; Codehighlighter1_2068_2207_Open_Text.style.display='none'; Codehighlighter1_2068_2207_Closed_Image.style.display='inline'; Codehighlighter1_2068_2207_Closed_Text.style.display='inline';" align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockStart.gif"><img style="display: none" id="Codehighlighter1_2068_2207_Closed_Image" onclick="this.style.display='none'; Codehighlighter1_2068_2207_Closed_Text.style.display='none'; Codehighlighter1_2068_2207_Open_Image.style.display='inline'; Codehighlighter1_2068_2207_Open_Text.style.display='inline';" align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/ContractedSubBlock.gif">             </span><span style="border-bottom: #808080 1px solid; border-left: #808080 1px solid; background-color: #ffffff; display: none; border-top: #808080 1px solid; border-right: #808080 1px solid" id="Codehighlighter1_2068_2207_Closed_Text"><img src="http://m.shnenglu.com/Images/dot.gif" alt="" /></span><span id="Codehighlighter1_2068_2207_Open_Text"><span style="color: #000000">{<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />                 ok </span><span style="color: #000000">=</span><span style="color: #000000"> </span><span style="color: #0000ff">true</span><span style="color: #000000">;<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />                 cout </span><span style="color: #000000"><<</span><span style="color: #000000"> ans[i] </span><span style="color: #000000"><<</span><span style="color: #000000"> </span><span style="color: #000000">"</span><span style="color: #000000"> </span><span style="color: #000000">"</span><span style="color: #000000"> </span><span style="color: #000000"><<</span><span style="color: #000000"> ans_count </span><span style="color: #000000"><<</span><span style="color: #000000"> endl;<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />                 i</span><span style="color: #000000">+=</span><span style="color: #000000">(ans_count</span><span style="color: #000000">-</span><span style="color: #000000">1</span><span style="color: #000000">);<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockEnd.gif" alt="" />             }</span></span><span style="color: #000000"><br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockEnd.gif" alt="" />        }</span></span><span style="color: #000000"><br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />        </span><span style="color: #0000ff">if</span><span style="color: #000000">(</span><span style="color: #000000">!</span><span style="color: #000000">ok)  cout </span><span style="color: #000000"><<</span><span style="color: #000000"> </span><span style="color: #000000">"</span><span style="color: #000000">No duplicates.</span><span style="color: #000000">"</span><span style="color: #000000"> </span><span style="color: #000000"><<</span><span style="color: #000000"> endl;<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" /><br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />        </span><span style="color: #008000">//</span><span style="color: #008000">for(int i = 0; i <count; i++)<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />        </span><span style="color: #008000">//</span><span style="color: #008000">std :: cout << ans[i] << std :: endl;</span><span style="color: #008000"><br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockEnd.gif" alt="" /></span><span style="color: #000000">    }</span></span><span style="color: #000000"><br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" alt="" />    </span><span style="color: #0000ff">return</span><span style="color: #000000"> </span><span style="color: #000000">0</span><span style="color: #000000">;<br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedBlockEnd.gif" alt="" />}</span></span><span style="color: #000000"><br /><img align="top" src="http://m.shnenglu.com/Images/OutliningIndicators/None.gif" alt="" /></span></div><img src ="http://m.shnenglu.com/vontroy/aggbug/128340.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://m.shnenglu.com/vontroy/" target="_blank">Vontroy</a> 2010-10-02 19:21 <a href="http://m.shnenglu.com/vontroy/archive/2010/10/02/128340.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item><item><title>POJ 1458 Common Subsequencehttp://m.shnenglu.com/vontroy/archive/2010/10/02/128311.htmlVontroyVontroySat, 02 Oct 2010 07:18:00 GMThttp://m.shnenglu.com/vontroy/archive/2010/10/02/128311.htmlhttp://m.shnenglu.com/vontroy/comments/128311.htmlhttp://m.shnenglu.com/vontroy/archive/2010/10/02/128311.html#Feedback0http://m.shnenglu.com/vontroy/comments/commentRss/128311.htmlhttp://m.shnenglu.com/vontroy/services/trackbacks/128311.html#include <iostream>  
#include 
<cstdio>  
#include 
<string> 
 
using namespace std;
  
const int maxn = 301;  

string str1, str2;  

int main()  
{  
    
while( cin >> str1 >> str2 )  
    
{  
        
int dp[maxn][maxn] = {0};  
        
int len1 = str1.length();  
        
int len2 = str2.length();  
        
forint i = 1; i <= len1; i++ )  
            
forint j = 1; j <= len2; j++ )  
            
{  
                
if( str1[i - 1== str2[j - 1] )  
                    dp[i][j] 
= dp[i - 1][j - 1+ 1;  
                
else  
                    dp[i][j] 
= max( dp[i][j - 1], dp[i - 1][j] );  
            }
  
        printf(
"%d\n", dp[len1][len2]);  
    }
  
    
return 0;  
}
  

Vontroy 2010-10-02 15:18 鍙戣〃璇勮
]]>
POJ 2488 A Knight's Journey ----- DFShttp://m.shnenglu.com/vontroy/archive/2010/07/29/121524.htmlVontroyVontroyWed, 28 Jul 2010 23:18:00 GMThttp://m.shnenglu.com/vontroy/archive/2010/07/29/121524.htmlhttp://m.shnenglu.com/vontroy/comments/121524.htmlhttp://m.shnenglu.com/vontroy/archive/2010/07/29/121524.html#Feedback0http://m.shnenglu.com/vontroy/comments/commentRss/121524.htmlhttp://m.shnenglu.com/vontroy/services/trackbacks/121524.html#include <stdio.h>
#include 
<string.h>

const int maxn = 50;

int b[8]={-2-2-1-11122},a[8]={-11-22-22-11};
bool check[maxn][maxn], flag;
int ansx[maxn], ansy[maxn];
int row, col;

void dfs(int x, int y, int sum)
{
    
if(sum == col * row)
    {
        
for(int i=1; i<=sum; i++)
        printf(
"%c%d", ansy[i]+'A'-1, ansx[i]);
        printf(
"\n");
        flag
=1;
        
return;
    }
    
for(int i=0; i<8 && !flag; i++)
    {
        
if(!flag && !check[x+a[i]][y+b[i]] && x+a[i]>0 && x+a[i]<=row && y+b[i]>0 && y+b[i]<=col)
        {
            ansx[sum
+1= x+a[i];
            ansy[sum
+1= y+b[i];
            check[x
+a[i]][y+b[i]] = 1;
            dfs(x
+a[i], y+b[i], sum+1);
            check[x
+a[i]][y+b[i]] = 0;
        }
    }
}

int main()
{
    
int n;
    
int cas;
    
while(~scanf("%d",&n))
    {
        cas
=1;
        
while(n--)
        {
            flag 
= 0;
            memset(check,
0,sizeof(check));
            printf(
"Scenario #%d:\n",cas++);
            scanf(
"%d%d"&row, &col);
            check[
1][1]=1;
            ansx[
1= ansy[1= 1;
            dfs(
111);
            
if(!flag) printf("impossible\n");
            printf(
"\n");
        }
    }
    
return 0;
}


Vontroy 2010-07-29 07:18 鍙戣〃璇勮
]]>
POJ 3468 A Simple Problem with Integershttp://m.shnenglu.com/vontroy/archive/2010/07/29/121523.htmlVontroyVontroyWed, 28 Jul 2010 23:16:00 GMThttp://m.shnenglu.com/vontroy/archive/2010/07/29/121523.htmlhttp://m.shnenglu.com/vontroy/comments/121523.htmlhttp://m.shnenglu.com/vontroy/archive/2010/07/29/121523.html#Feedback0http://m.shnenglu.com/vontroy/comments/commentRss/121523.htmlhttp://m.shnenglu.com/vontroy/services/trackbacks/121523.html#include <iostream>
#include 
<cstdio>

using namespace std;

struct CNode
{
    
int L, R;
    CNode 
* pLeft, * pRight;
    
long long nSum, Inc;
};

CNode Tree[
1000000];

int nCount = 0;

void BuildTree( CNode * pRoot, int L, int R )
{
    pRoot
->= L;
    pRoot
->= R;
    pRoot
->nSum = 0;
    pRoot
->Inc = 0;

    
if( L == R )    return;
    nCount
++;
    pRoot
->pLeft = Tree + nCount;
    nCount
++;
    pRoot
->pRight = Tree + nCount;
    BuildTree( pRoot
->pLeft, L, ( L + R ) / 2 );
    BuildTree( pRoot
->pRight, ( L + R ) / 2 + 1, R );
}

void Insert( CNode * pRoot, int i, int v )
{
    
if( pRoot->== i && pRoot->== i )
    {
        pRoot
->nSum = v;
        
return;
    }
    pRoot
->nSum += v;
    
if( i <= ( pRoot->+ pRoot->R ) / 2 )
        Insert( pRoot
->pLeft, i, v );
    
else
        Insert( pRoot
->pRight, i, v);
}

void Add( CNode * pRoot, int a, int b, long long c )
{
    
if( a == pRoot->&& b == pRoot->R )
    {
        pRoot
->Inc += c;
        
return;
    }
    pRoot
->nSum += ( b - a + 1 ) * c;
    
if( b <= ( pRoot->+ pRoot->R ) / 2)
        Add( pRoot
->pLeft, a, b, c );
    
else if ( a >= (pRoot->+ pRoot->R ) / 2 + 1 )
        Add ( pRoot
->pRight, a, b, c );
    
else
    {
        Add( pRoot
->pLeft, a, ( pRoot->+ pRoot->R ) / 2, c );
        Add( pRoot
->pRight, (pRoot->+ pRoot->R ) / 2 + 1, b, c );
    }
}

long long QuerynSum( CNode * pRoot, int a, int b )
{
    
if ( a == pRoot->&& b == pRoot->R )
        
return (pRoot->nSum + (pRoot->- pRoot->+ 1 ) * pRoot->Inc);
    pRoot
->nSum += (pRoot->- pRoot->+ 1 ) * pRoot->Inc;
    Add( pRoot
->pLeft, pRoot->L, (pRoot->+ pRoot->R ) / 2, pRoot->Inc );
    Add( pRoot
->pRight, (pRoot->+ pRoot->R ) / 2 + 1, pRoot->R, pRoot->Inc );
    pRoot
->Inc = 0;

    
if( b <= (pRoot->+ pRoot->R ) /2 )
        
return QuerynSum( pRoot->pLeft, a, b );
    
else if ( a >= (pRoot->+ pRoot->R ) / 2 + 1 )
        
return QuerynSum ( pRoot->pRight, a, b);
    
else
        
return QuerynSum( pRoot->pLeft, a, (pRoot->L  +pRoot->R ) / 2 ) + QuerynSum( pRoot->pRight, (pRoot->+ pRoot->R ) / 2 + 1, b ) ;
}

int main()
{
    
int n,q;
    scanf(
"%d%d"&n, &q );
    nCount 
= 0;
    BuildTree( Tree, 
1, n);
    
int temp;
    
forint i = 1; i <= n; i++ )
    {
        scanf(
"%d"&temp);
        Insert( Tree, i, temp );
    }
    
char c_temp[10];
    
int a, b, c;
    
forint i = 0; i < q; i++ )
    {
        scanf(
"%s", c_temp);
        
if( c_temp[0== 'C' )
        {
            scanf(
"%d%d%d"&a, &b, &c );
            Add( Tree, a, b, c);
        }
        
else
        {
            scanf(
"%d%d"&a, &b );
            printf(
"%I64d\n",QuerynSum( Tree, a, b ));
        }
    }
    
return 0;
}


Vontroy 2010-07-29 07:16 鍙戣〃璇勮
]]>
POJ 3264 Balanced Lineup http://m.shnenglu.com/vontroy/archive/2010/07/29/121522.htmlVontroyVontroyWed, 28 Jul 2010 23:14:00 GMThttp://m.shnenglu.com/vontroy/archive/2010/07/29/121522.htmlhttp://m.shnenglu.com/vontroy/comments/121522.htmlhttp://m.shnenglu.com/vontroy/archive/2010/07/29/121522.html#Feedback0http://m.shnenglu.com/vontroy/comments/commentRss/121522.htmlhttp://m.shnenglu.com/vontroy/services/trackbacks/121522.html#include <iostream>
#include 
<cstdio>
#include 
<algorithm>

const int MY_MAX = -99999999;
const int MY_MIN = 99999999;

using namespace std;

struct CNode
{
    
int R, L;
    
int nMax, nMin;
    CNode 
* pLeft, * pRight;
}Tree[
1000000];

//CNode Tree[1000000];
int nMax, nMin;
int nCount = 0;

void BuildTree( CNode * pRoot, int L, int R )
{
    pRoot
->= L;
    pRoot
->= R;

    pRoot
->nMax = MY_MAX;
    pRoot
->nMin =   MY_MIN;

    
if( R != L )
    {
        nCount
++;
        pRoot
->pLeft = Tree + nCount;
        nCount
++;
        pRoot
->pRight = Tree + nCount;
        BuildTree( pRoot
->pLeft, L, ( L + R ) / 2 );
        BuildTree( pRoot
->pRight, ( L + R ) / 2 + 1, R );
    }
}

void Insert( CNode * pRoot, int i, int v )
{
    
if( pRoot->== i &&pRoot-> R == i )
    {
        pRoot
-> nMin = pRoot-> nMax = v;
        
return ;
    }

    pRoot
->nMin = min( pRoot->nMin,v );
    pRoot
->nMax = max( pRoot->nMax, v );

    
if( i <= ( pRoot->+ pRoot->R ) / 2 )
        Insert( pRoot
->pLeft, i, v );
    
else
        Insert( pRoot
->pRight, i, v );
}

void Query( CNode * pRoot, int s, int e )
{
    
if( pRoot->nMax <= nMax && pRoot->nMin >= nMin )
        
return ;
    
if( s == pRoot->&& e == pRoot->R )
    {
        nMax 
= max(pRoot->nMax, nMax);
        nMin 
= min(pRoot->nMin,nMin);
        
return;
    }
    
if( e <= ( pRoot->+ pRoot->R ) / 2 )
        Query( pRoot
->pLeft, s, e );
    
else if ( s >= ( pRoot->+ pRoot->R ) / 2 + 1 )
        Query( pRoot
->pRight, s, e );
    
else
    {
        Query( pRoot
->pLeft, s, ( pRoot->+ pRoot->R ) / 2 );
        Query( pRoot
->pRight, ( pRoot->+ pRoot->R) / 2 + 1, e ) ;
    }
}

int main()
{
    
int n, q, s, e;
    
int h;
    scanf(
"%d%d"&n, &q);
    nCount 
= 0;
    BuildTree( Tree, 
1, n);
    
forint i = 1; i <= n; i++ )
    {
        scanf(
"%d"&h);
        Insert( Tree, i, h );
    }
    
forint i = 0; i < q; i++)
    {
        scanf(
"%d%d"&s,&e );
        nMax 
= MY_MAX;
        nMin 
= MY_MIN;
        Query( Tree, s, e );
        printf(
"%d\n", nMax - nMin) ;
    }
    
return 0;
}


Vontroy 2010-07-29 07:14 鍙戣〃璇勮
]]>
POJ 1611 The Suspects http://m.shnenglu.com/vontroy/archive/2010/07/29/121521.htmlVontroyVontroyWed, 28 Jul 2010 23:09:00 GMThttp://m.shnenglu.com/vontroy/archive/2010/07/29/121521.htmlhttp://m.shnenglu.com/vontroy/comments/121521.htmlhttp://m.shnenglu.com/vontroy/archive/2010/07/29/121521.html#Feedback0http://m.shnenglu.com/vontroy/comments/commentRss/121521.htmlhttp://m.shnenglu.com/vontroy/services/trackbacks/121521.html#include <iostream>
#include 
<cstdio>

const int maxn = 30000 + 5;

using namespace std;

int father[maxn],rank[maxn];

void init( int n )
{
    
for ( int i = 0; i < n; i++)
    {
        father[i] 
= i;
        rank[i] 
= 1;
    }
}

int findSet( int n )
{
    
if(father[n] != n)
        father[n] 
= findSet(father[n]);
    
return father[n];
}

void Union( int a, int b )
{
    
int x = findSet( a );
    
int y = findSet( b );

    
if( x == y ) return ;
    
if( rank[x] >= rank[y] )
    {
        father[y] 
= x;
        rank[x] 
+= rank[y];
    }
    
else
    {
        father[x] 
= y;
        rank[y] 
+= rank[x];
    }
}

int main()
{
    
int m, n, count, temp, first;
    
while~scanf("%d%d"&n, &m ) && n )
    {
        init(n);
        
while( m-- )
        {
            scanf(
"%d%d"&count, &first );
            
forint i = 1; i < count ;i ++)
            {
                scanf(
"%d"&temp);
                Union( first, temp );
            }
        }
        printf(
"%d\n",rank[findSet(0)]);
    }
    
return 0;
}


Vontroy 2010-07-29 07:09 鍙戣〃璇勮
]]>
POJ 2528 Mayor's posters http://m.shnenglu.com/vontroy/archive/2010/07/28/121507.htmlVontroyVontroyWed, 28 Jul 2010 14:45:00 GMThttp://m.shnenglu.com/vontroy/archive/2010/07/28/121507.htmlhttp://m.shnenglu.com/vontroy/comments/121507.htmlhttp://m.shnenglu.com/vontroy/archive/2010/07/28/121507.html#Feedback0http://m.shnenglu.com/vontroy/comments/commentRss/121507.htmlhttp://m.shnenglu.com/vontroy/services/trackbacks/121507.html#include <iostream>
#include 
<algorithm>
#include 
<math.h>
using namespace std;
int n;
struct CPost
{
    
int L,R;
};
CPost posters[
10100];
int x[20200];
int hash[10000010];
struct CNode 
{
    
int L,R;
    
bool bCovered; //鏈尯闂存槸鍚﹀凡緇忚瀹屽叏瑕嗙洊 
    CNode * pLeft, * pRight;
};
CNode Tree[
100000];
int nNodeCount = 0;
int Mid( CNode * pRoot)
{
    
return (pRoot->+ pRoot->R)/2;
}
void BuildTree( CNode * pRoot, int L, int R)
{
    pRoot
->= L;
    pRoot
->= R;
    pRoot
->bCovered = false;
    
if( L == R )
        
return;
    nNodeCount 
++;
    pRoot
->pLeft = Tree + nNodeCount;
    nNodeCount 
++;
    pRoot
->pRight = Tree + nNodeCount;
    BuildTree( pRoot
->pLeft,L,(L+R)/2);
    BuildTree( pRoot
->pRight,(L+R)/2 + 1,R);
}
bool Post( CNode  *pRoot, int L, int R)
{
    
if( pRoot->bCovered )
        
return false;
    
if( pRoot->== L && pRoot->== R) {
        pRoot
->bCovered = true;
        
return true;
    }
    
bool bResult ;
    
if( R <= Mid(pRoot) ) 
        bResult 
= Post( pRoot->pLeft,L,R);
    
else if( L >= Mid(pRoot) + 1)
        bResult 
= Post( pRoot->pRight,L,R);
    
else {
        
bool b1 = Post(pRoot->pLeft ,L,Mid(pRoot));
        
bool b2 = Post( pRoot->pRight,Mid(pRoot) + 1,R);
        bResult 
= b1 || b2;
    }
    
//瑕佹洿鏂版牴鑺傜偣鐨勮鐩栨儏鍐?/span>
    if( pRoot->pLeft->bCovered && pRoot->pRight->bCovered )
        pRoot
->bCovered = true;
    
return bResult;
}
int main()
{
    
int t;
    
int i,j,k;
    scanf(
"%d",&t);
    
int nCaseNo = 0;
    
while(t--) {
        nCaseNo 
++;
        scanf(
"%d",&n);
        
int nCount = 0;
        
for( i = 0;i < n;i ++ )  {
            scanf(
"%d%d"& posters[i].L,& posters[i].R );

            x[nCount
++= posters[i].L;
            x[nCount
++= posters[i].R;
        }
        sort(x,x
+nCount);
        nCount 
= unique(x,x+nCount) - x; //鍘繪帀閲嶅鍏冪礌
        for( i = 0;i < nCount;i ++ )
            hash[x[i]] 
= i;
        nNodeCount 
= 0;
        BuildTree( Tree,
0,nCount - 1);
        
int nSum = 0;
        
for( i = n - 1;i >= 0;i -- ) { // 浠庡悗寰鍓嶇湅鏉挎槸鍚︾湅寰楄
            if( Post(Tree,hash[posters[i].L],hash[posters[i].R]))
                nSum 
++;
        }
        printf(
"%d\n",nSum);
    }
    
return 0;
}


Vontroy 2010-07-28 22:45 鍙戣〃璇勮
]]>
POJ 1001 Exponentiation http://m.shnenglu.com/vontroy/archive/2010/05/26/116341.htmlVontroyVontroyTue, 25 May 2010 23:30:00 GMThttp://m.shnenglu.com/vontroy/archive/2010/05/26/116341.htmlhttp://m.shnenglu.com/vontroy/comments/116341.htmlhttp://m.shnenglu.com/vontroy/archive/2010/05/26/116341.html#Feedback0http://m.shnenglu.com/vontroy/comments/commentRss/116341.htmlhttp://m.shnenglu.com/vontroy/services/trackbacks/116341.htmlExponentiation
Time Limit: 500MS Memory Limit: 10000K
Total Submissions: 68964 Accepted: 16146

Description

Problems involving the computation of exact values of very large magnitude and precision are common. For example, the computation of the national debt is a taxing experience for many computer systems. 

This problem requires that you write a program to compute the exact value of Rn where R is a real number ( 0.0 < R < 99.999 ) and n is an integer such that 0 < n <= 25.

Input

The input will consist of a set of pairs of values for R and n. The R value will occupy columns 1 through 6, and the n value will be in columns 8 and 9.

Output

The output will consist of one line for each line of input giving the exact value of R^n. Leading zeros should be suppressed in the output. Insignificant trailing zeros must not be printed. Don't print the decimal point if the result is an integer.

Sample Input

95.123 12
0.4321 20
5.1234 15
6.7592  9
98.999 10
1.0100 12

Sample Output

548815620517731830194541.899025343415715973535967221869852721
.00000005148554641076956121994511276767154838481760200726351203835429763013462401
43992025569.928573701266488041146654993318703707511666295476720493953024
29448126.764121021618164430206909037173276672
90429072743629540498.107596019456651774561044010001
1.126825030131969720661201
铏界劧鏁堢巼浣庣偣鍎匡紝浣嗕唬鐮侀潪甯哥畝鍗曪紝瀹規槗瀹炵幇錛岀湡姝f瘮璧涜繕鏄緢濂界敤鐨勩傘傘?br />
import java.io.*;
import java.util.*;
import java.math.*;

public class Main{
    public static void main( String args[] )
    {
        BigDecimal num;
        int n;
        String r;
        Scanner cin = new Scanner(System.in);
        
        while(cin.hasNextBigDecimal())
        {
            num = cin.nextBigDecimal();
            n = cin.nextInt();
            
            num = num.pow(n);
            r = num.stripTrailingZeros().toPlainString();//BigDecimal.toPlainString 閬垮厤杈撳嚭鏃朵駭鐢熺瀛﹁鏁版硶褰㈠紡
            if(r.startsWith("0."))
                r = r.substring(1);
            System.out.println(r);
        }
    }
}


Vontroy 2010-05-26 07:30 鍙戣〃璇勮
]]>
青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <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>
            免费成人高清| 久久精品青青大伊人av| 亚洲国产一区在线| 久久久久久久久伊人| 免费看的黄色欧美网站| 亚洲欧洲一区二区三区久久| 欧美视频一区在线观看| 亚洲欧美另类在线| 亚洲精品在线观看免费| 免费看av成人| 亚洲激情成人在线| 老司机午夜免费精品视频 | 国产精品盗摄久久久| 久久精品国产成人| 亚洲一区二区高清视频| 欧美高清不卡| 久久久精品五月天| 亚洲女性裸体视频| av成人动漫| 亚洲人成亚洲人成在线观看| 一区二区三区产品免费精品久久75 | 久久精品国内一区二区三区| 久久尤物电影视频在线观看| 性色av一区二区三区红粉影视| 亚洲黄色有码视频| 原创国产精品91| 黄色小说综合网站| 尤物九九久久国产精品的特点| 亚洲狼人综合| 亚洲精品一区二区网址| 亚洲第一偷拍| 亚洲精美视频| 欧美一级视频一区二区| 亚洲第一福利视频| 亚洲精品一区二区三区福利| 亚洲欧美色婷婷| 亚洲精美视频| 99国产精品久久久久老师| 午夜精品久久久久99热蜜桃导演| 亚洲日本中文字幕| 欧美在线一区二区| 久久这里只有精品视频首页| 亚洲裸体俱乐部裸体舞表演av| 久久久精品日韩| 欧美xxxx在线观看| 欧美成人精品在线观看| 国产日产欧产精品推荐色| 好吊妞这里只有精品| 亚洲综合首页| 久久久久国产免费免费| 日韩亚洲欧美中文三级| 亚洲一区二区三区四区中文| 欧美高清免费| 国产精品欧美一区喷水| 黄色欧美成人| 久久久久欧美精品| 亚洲国产福利在线| 久久人人九九| 欧美视频在线看| 日韩视频免费大全中文字幕| 美日韩精品视频| 久久国产精品一区二区三区| 国产专区综合网| 一区二区三区黄色| 亚洲精品影视| 欧美日本精品在线| 国语自产在线不卡| 久久免费视频在线观看| 久久av红桃一区二区小说| 母乳一区在线观看| 国产精品白丝av嫩草影院| 国产主播喷水一区二区| 久久精品亚洲精品| 欧美在线视频一区| 激情亚洲一区二区三区四区| 亚洲午夜精品网| 久久免费视频在线观看| 久久精品一区| 亚洲精品欧美精品| 99视频精品全国免费| 国产精品免费网站在线观看| 亚洲人成久久| 99国产精品久久| 国产日韩在线播放| 小黄鸭精品密入口导航| 欧美综合国产| 一本色道久久综合精品竹菊 | 99亚洲伊人久久精品影院红桃| 欧美日韩一区在线观看视频| 亚洲电影在线观看| 中文日韩在线| 欧美电影电视剧在线观看| 毛片一区二区三区| 亚洲欧美一区二区视频| 欧美日韩国产成人| 在线成人av.com| 亚洲精品小视频| 国产丝袜一区二区| 欧美77777| 久久视频国产精品免费视频在线| 亚洲精品美女91| 先锋影音国产一区| 国产精品一级在线| 欧美一进一出视频| 亚洲一区影院| 亚洲激情视频网| 亚洲欧美国产精品桃花| 最新成人av网站| 欧美一区二区黄| 国产真实乱子伦精品视频| 欧美激情一区| 欧美精品在线免费观看| 久久精品中文| 国产精品99免视看9| 美女福利精品视频| 国产精品激情偷乱一区二区∴| 欧美国产日韩视频| 狠狠色狠狠色综合日日五| 一区二区三区四区五区视频| 久久精品国内一区二区三区| 一区二区三区欧美成人| 狂野欧美激情性xxxx| 91久久国产综合久久| 羞羞色国产精品| 亚洲无线一线二线三线区别av| 久热精品视频在线观看一区| 久久久精彩视频| 国产欧美一区二区三区在线看蜜臀 | 欧美精品97| 一区二区三区精密机械公司| 久久久天天操| 久久久91精品国产一区二区三区| 欧美视频亚洲视频| 亚洲精品乱码久久久久久蜜桃91| 欧美特黄一级大片| 亚洲人成网在线播放| 最新国产乱人伦偷精品免费网站| 久久精品人人做人人爽电影蜜月 | 亚洲国产精品久久久久婷婷老年| 午夜精品影院| 久久精品卡一| 激情视频一区二区三区| 久久婷婷久久一区二区三区| 美女免费视频一区| 亚洲国产欧美一区二区三区久久| 久久一区二区三区四区五区| 欧美成人一区二免费视频软件| 亚洲国产日韩欧美在线99| 欧美mv日韩mv国产网站| 亚洲日本成人| 亚洲欧美另类国产| 国产亚洲在线| 制服丝袜亚洲播放| 欧美成人精品高清在线播放| 国产欧美精品日韩区二区麻豆天美| 亚洲午夜电影| 亚洲人成在线播放网站岛国| 鲁大师影院一区二区三区| 免费观看成人| 亚洲精品美女91| 国产精品成人观看视频国产奇米| 亚洲一区二区三区高清| 久久久精彩视频| 亚洲精品美女91| 国产精品一卡二卡| 久久伊人一区二区| 一个色综合导航| 久久久久国产成人精品亚洲午夜| 亚洲国产电影| 欧美亚韩一区| 久久精品人人| 99国产欧美久久久精品| 久久夜色精品国产噜噜av| 亚洲乱码国产乱码精品精可以看| 欧美系列电影免费观看| 久久久精品久久久久| 夜夜嗨av一区二区三区四区| 久久精品中文字幕免费mv| 99国产精品久久久久老师| 免费成人高清| 亚洲一区二区四区| 欧美激情免费观看| 午夜精品三级视频福利| 在线观看欧美黄色| 国产精品日韩欧美| 欧美激情区在线播放| 欧美中文字幕第一页| 亚洲免费观看高清完整版在线观看熊 | 久久久蜜桃精品| 一区二区三区黄色| 亚洲大胆人体在线| 久久久女女女女999久久| 亚洲性图久久| 99re6这里只有精品| 尤物精品国产第一福利三区| 国产精品一区二区久久国产| 欧美日韩在线视频观看| 欧美国产欧美综合| 久久婷婷久久一区二区三区| 亚洲欧美在线免费|