codeforces 451C. Predict Outcome of the Game 解题报告
题目链接:http://codeforces.com/problemset/problem/451/C
题目意思:有3支球队(假设编号为1、2、3),总共要打 n 场比赛,已知已经错过这n场比赛中的 k 场,但从 k 场比赛中可以获取一些信息:设w1表示 k 场比赛中编号为1的球队赢了w1场比赛(w2、w3 类似),绝对值 |w1-w2| = d1, |w2-w3| = d2,问能否通过设置n-k 的 赛果来使得n场比赛都打完后,编号为1的球队的胜利次数 == 编号为2的球队的胜利次数 == 编号为3的球队的胜利次数。注意:每场比赛的赛果只有胜和输之分,没有平局。
初时看到这道题目,完全没有思路,当看了Tutorial 之后(不过没仔细看他的solution),就大概知道怎么做了,贡献了两个wa......
首先对于n,如果不能被 3 整除,那就肯定怎么分配剩下的 n-k 场赛果都于事无补的了,因为最终 编号为1的球队的胜利次数 == 编号为2的球队的胜利次数 == 编号为3的球队的胜利次数 == n / 3 嘛
其次,要得出一条隐含的方程(关键所在): w1 + w2 + w3 = k! (1)
然后结合 |w1-w2| = d1 (2), |w2-w3| = d2 (3) 来得出w1、 w2、 w3的值。(绝对值可以通过w1,w2,w3的大小关系来去掉,有四种情况)
(1)w1 >= w2,w2 >= w3 (2)w1 >= w2,w2 < w3
——> w1 = (2d1 + d2 + k) / 3 ——> w1 = (2d1 - d2 + k) / 3
w2 = (-d1 + d2 + k) / 3 w2 = (-d1 - d2 + k) / 3
w3 = (-d1 - 2d2 + k) / 3 w3 = (-d1 + 2d2 + k) / 3
(3)w1 < w2,w2 >= w3 (4)w1 < w2,w2 < w3
——> w1 = (-2d1 + d2 + k) / 3 ——> w1 = (-2d1 - d2 + k) / 3
w2 = ( d1 + d2 + k ) / 3 w2 = ( d1 - d2 + k ) / 3
w3 = ( d1 - 2d2 + k) / 3 w3 = ( d1 + 2d2 + k) / 3
可以知道,x1与x2的大小关系只会影响 d1 的符号,x2与x3的大小关系只会影响 d2 的符号。
那么可以枚举d1与d2的符号(当然不可能是0啦),算出相应的x1, x2, x3 的大小,看看每个xi (1 <= i <= 3 ) 是否满足 0 <= xi <= n/3 (前提是n%3 == 0!下界0一定要加上,因为算出来有可能是负数啊),还有一点就是,由于涉及除法,4 / 3 == 1 这些情况要考虑到,一个可以避免的方法是,计算的时候,分子要判断是否能被3整除,不能就continue 咯。
总的来说,这题是纯数学题!
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
using namespace std; __int64 n, k, d1, d2; int main()
{
int t;
while (scanf("%d", &t) != EOF)
{
while (t--)
{
scanf("%I64d%I64d%I64d%I64d", &n, &k, &d1, &d2);
if (n % )
printf("no\n");
else
{
int flag = ;
for (int s1 = -; s1 <= && !flag; s1++) // 控制d1的正负号
{
for (int s2 = -; s2 <= && !flag; s2++) // 控制d2的正负号
{
if (s1 == || s2 == )
continue;
__int64 w1, w2, w3;
__int64 f1, f2, f3; // w1, w2, w3的分子
f1 = (*(s1)*d1 + (s2)*d2 + k);
if (f1 % )
continue;
w1 = f1 / ;
f2 = ((-)*(s1)*d1 + (s2)*d2 + k);
if (f2 % )
continue;
w2 = f2 / ;
f3 = ((-)*(s1)*d1 + *(-)*(s2)*d2 + k);
if (f3 % )
continue;
w3 = f3 / ; if (w1 + w2 + w3 == k && w1 >= && w1 <= n/ && w2 >= && w2 <= n/ && w3 >= && w3 <= n/)
{
flag = ;
break;
}
}
}
printf("%s\n", flag ? "yes" : "no");
}
}
}
return ;
}
codeforces 451C. Predict Outcome of the Game 解题报告的更多相关文章
- CodeForces 451C Predict Outcome of the Game
Predict Outcome of the Game Time Limit:2000MS Memory Limit:262144KB 64bit IO Format:%I64d &a ...
- codeforces 258div2C Predict Outcome of the Game
题目链接:http://codeforces.com/contest/451/problem/C 解题报告:三个球队之间一共有n场比赛,现在已经进行了k场,不知道每个球队的胜场是多少,如三个球队的胜场 ...
- codeforces 814B.An express train to reveries 解题报告
题目链接:http://codeforces.com/problemset/problem/814/B 题目意思:分别给定一个长度为 n 的不相同序列 a 和 b.这两个序列至少有 i 个位置(1 ≤ ...
- codeforces 558B. Amr and The Large Array 解题报告
题目链接:http://codeforces.com/problemset/problem/558/B 题目意思:给出一个序列,然后找出出现次数最多,但区间占用长度最短的区间左右值. 由于是边读入边比 ...
- codeforces 515B. Drazil and His Happy Friends 解题报告
题目链接:http://codeforces.com/problemset/problem/515/B 题目意思:有 n 个 boy 和 m 个 girl,有 b 个 boy 和 g 个 girl ( ...
- codeforces 514B. Han Solo and Lazer Gun 解题报告
题目链接:http://codeforces.com/problemset/problem/514/B 题目意思:给出双头枪的位置(x0, y0),以及 n 个突击队成员的坐标.双头枪射击一次,可以把 ...
- codeforces 471C.MUH and House of Cards 解题报告
题目链接:http://codeforces.com/problemset/problem/471/C 题目意思:有 n 张卡,问能做成多少种不同楼层(floor)的 house,注意这 n 张卡都要 ...
- codeforces C. Vasily the Bear and Sequence 解题报告
题目链接:http://codeforces.com/problemset/problem/336/C 题目意思:给出一个递增的正整数序列 a1, a2, ..., an,要求从中选出一堆数b1, b ...
- codeforces A. Vasily the Bear and Triangle 解题报告
题目链接:http://codeforces.com/problemset/problem/336/A 好简单的一条数学题,是8月9日的.比赛中没有做出来,今天看,从pupil变成Newbie了,那个 ...
随机推荐
- css3 改变默认选中文本背景色和文本颜色
::selection { background:#d3d3d3; color:#555; } ::-moz-selection { background:#d3d3d3; color:#555; } ...
- Netty和Akka有什么不同?
摘要: Akka is a concurrency framework built around the notion of actors and composable futures, Akka w ...
- Croc Champ 2013 - Round 2 C. Cube Problem
问满足a^3 + b^3 + c^3 + n = (a+b+c)^3 的 (a,b,c)的个数 可化简为 n = 3*(a + b) (a + c) (b + c) 于是 n / 3 = (a + b ...
- git(三):第一次github了解使用
第一次使用github,看了一下使用说明,创建第一个repository,以后还要多学习. 一.Github创建一个新仓库 ······Creat a new repository 创建一个新仓库,点 ...
- emacs 下 common lisp 配置
安装 sbcl .emacs 加入 ;for lisp mode (add-to-list 'load-path "D:/kuaipan/.emacs.d/elpa/slime-201311 ...
- JDK内置工具jstack(Java Stack Trace)(转)
1.介绍 jstack用于打印出给定的java进程ID或core file或远程调试服务的Java堆栈信息,如果是在64位机器上,需要指定选项"-J-d64",Windows的js ...
- 全卷积网络FCN详解
http://www.cnblogs.com/gujianhan/p/6030639.html CNN能够对图片进行分类,可是怎么样才能识别图片中特定部分的物体? (图像语义分割) FCN(Fully ...
- 使用图片作为textview组件的背景
<TextView android:layout_gravity="center" android:layout_width="100dp" androi ...
- vmware Unable to open kernel device "\\.\Global\vmx86": The system cannot find the file 的解决方法
https://communities.vmware.com/thread/245800?start=0&tstart=0 I have exactly same issue. I star ...
- MFC Month Calendar Control 控件使用
在上层软件编程中,往往须要提供一个月历控件让用户选择对应日期或者用此月历控件来强调特定的一天. MFC的 Month Calendar Control 控件自系统升级到 Windows 7 之后,对于 ...