Codeforces Round #283 (Div. 2) D. Tennis Game_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 11:52:00
Original
1118 people have browsed it

标程貌似是二分?

我预处理标记了一下,然后从1到n枚举t,因为对于每个t,若s存在,那么s是唯一的,所以枚举t即可。

判断t是否合法,直接暴力的话,会超时

不知道标程大致思想是否跟我的一样,也许就是标程没有标记而是二分来找

但是,我的时间复杂度是更优的,n*(1+1/2+1/3+......1/n)=n*lnn的做法


#include<iostream>#include<map>#include<string>#include<cstring>#include<cstdio>#include<cstdlib>#include<cmath>#include<queue>#include<vector>#include<algorithm>using namespace std;struct Ans{	int s,t;	Ans(){}	Ans(int a,int b){s=a;t=b;}	bool operator ans;int in[100010];int as[100010];int ap[200010];int bs[100010];int bp[200010];int n;void maketable(){	int i,x,y;	x=y=0;	memset(ap,-1,sizeof(ap));	memset(bp,-1,sizeof(bp));	for(i=0;i<n if ap else bp as bs isok s int t1 x="y=0;" while return y t2="bs[ap[t1]]+s;">bp[t2]))		{			t1=as[bp[t2]]+s;			t2+=s;			y++;		}		else			return 0;	}}int main(){	int i,t,m;	scanf("%d",&n);	for(i=0;i<n scanf maketable for t="isok(i);" if ans.push_back sort m="ans.size();" printf>    <br>    <br> D. Tennis Game      <p class="sycode">    </p>
<p class="sycode">     time limit per test    </p> 2 seconds      <p class="sycode">    </p>
<p class="sycode">     memory limit per test    </p> 256 megabytes      <p class="sycode">    </p>
<p class="sycode">     input    </p> standard input      <p class="sycode">    </p>
<p class="sycode">     output    </p> standard output       <p class="sycode">   </p>
<p>Petya and Gena love playing table tennis. A single match is played according to the following rules: a match consists of multiple sets, each set consists of multiple serves. Each serve is won by one of the players, this player scores one point. As soon as one of the players scores t points, he wins the set; then the next set starts and scores of both players are being set to 0. As soon as one of the players wins the total ofs sets, he wins the match and the match is over. Heres and t are some positive integer numbers.</p>   <p>To spice it up, Petya and Gena choose new numbers s andt before every match. Besides, for the sake of history they keep a record of each match: that is, for each serve they write down the winner. Serve winners are recorded in the chronological order. In a record the set is over as soon as one of the players scores t points and the match is over as soon as one of the players winss sets.</p>   <p>Petya and Gena have found a record of an old match. Unfortunately, the sequence of serves in the record isn't divided into sets and numberss and t for the given match are also lost. The players now wonder what values ofs and t might be. Can you determine all the possible options?</p>    <p class="sycode">   </p>
<p class="sycode">    Input   </p>   <p>The first line contains a single integer n ? the length of the sequence of games (1?≤?n?≤?105).</p>   <p>The second line contains n space-separated integersai. Ifai?=?1, then thei-th serve was won by Petya, if ai?=?2, then the i-th serve was won by Gena.</p>   <p>It is not guaranteed that at least one option for numberss and t corresponds to the given record.</p>    <p class="sycode">   </p>
<p class="sycode">    Output   </p>   <p>In the first line print a single number k ? the number of options for numberss and t.</p>   <p>In each of the following k lines print two integerssi andti ? the option for numberss and t. Print the options in the order of increasingsi, and for equalsi ? in the order of increasingti.</p>    <p class="sycode">   Sample test(s)  </p>  <p class="sycode">   </p>
<p class="sycode">    Input   </p>   <pre class="brush:php;toolbar:false">51 2 1 2 1
Copy after login

Output

21 33 1
Copy after login

Input

41 1 1 1
Copy after login

Output

31 42 24 1
Copy after login

Input

41 2 1 2
Copy after login

Output

Input

82 1 2 1 1 1 1 1
Copy after login

Output

31 62 36 1
Copy after login
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!