「CF451C」Predict Outcome of the Game
There are n games in a football tournament. Three teams are participating in it. Currently k games had already been played.
You are an avid football fan, but recently you missed the whole k games. Fortunately, you remember a guess of your friend for these kgames. Your friend did not tell exact number of wins of each team, instead he thought that absolute difference between number of wins of first and second team will be d1 and that of between second and third team will be d2.
You don’t want any of team win the tournament, that is each team should have the same number of wins after n games. That’s why you want to know: does there exist a valid tournament satisfying the friend’s guess such that no team will win this tournament?
Note that outcome of a match can not be a draw, it has to be either win or loss.
The first line of the input contains a single integer corresponding to number of test cases t (1 ≤ t ≤ 105).
Each of the next t lines will contain four space-separated integers n, k, d1, d2 (1 ≤ n ≤ 1012; 0 ≤ k ≤ n; 0 ≤ d1, d2 ≤ k) — data for the current test case.
For each test case, output a single line containing either “yes” if it is possible to have no winner of tournament, or “no” otherwise (without quotes).
1 2 3 4 5 6 |
5 3 0 0 0 3 3 0 0 6 4 1 0 6 3 3 0 3 3 3 2 |
1 2 3 4 5 |
yes yes yes no no |
Sample 1. There has not been any match up to now (k = 0, d1 = 0, d2 = 0). If there will be three matches (1-2, 2-3, 3-1) and each team wins once, then at the end each team will have 1 win.
Sample 2. You missed all the games (k = 3). As d1 = 0 and d2 = 0, and there is a way to play three games with no winner of tournament (described in the previous sample), the answer is “yes”.
Sample 3. You missed 4 matches, and d1 = 1, d2 = 0. These four matches can be: 1-2 (win 2), 1-3 (win 3), 1-2 (win 1), 1-3 (win 1). Currently the first team has 2 wins, the second team has 1 win, the third team has 1 win. Two remaining matches can be: 1-2 (win 2), 1-3 (win 3). In the end all the teams have equal number of wins (2 wins).
题解
这题简直了。。。
3支队伍,已知在k场比赛中,1和2胜场差d1,2和3差d2,问是否存在剩下的n-k场使得3支队伍胜场相等。。。
可以枚举4种情况判断
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
#include<iostream> #include<cstdio> #include<cstring> #include<algorithm> #include<cmath> #define ll long long #define inf 1000000000 using namespace std; inline ll read() { ll x=0,f=1;char ch=getchar(); while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();} while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();} return x*f; } ll n,m,d1,d2; ll a[5]; inline bool jud() { if((m-a[1]-a[2])%3||(m-a[1]-a[2])<0)return 0; ll t=(m-a[1]-a[2])/3; a[1]+=t;a[2]+=t;a[3]+=t; t=n/3;ll tot=n-m; for(int i=1;i<=3;i++) if(a[i]>t) return 0; else tot-=t-a[i]; if(tot!=0) return 0; return 1; } inline bool solve() { if(d1<d2)swap(d1,d2); a[1]=d1;a[2]=d2;a[3]=0;if(jud())return 1; a[1]=d1;a[2]=d1-d2;a[3]=0;if(jud())return 1; a[1]=d1+d2;a[2]=d1;a[3]=0;if(jud())return 1; a[1]=d1+d2;a[2]=d2;a[3]=0;if(jud())return 1; return 0; } int main() { int T=read(); while(T--) { n=read();m=read();d1=read();d2=read(); if(n%3||!solve()) puts("no"); else puts("yes"); } return 0; } |