https://www.hackerrank.com/contests/w1/challenges/volleyball-match

此题不错,首先可以看出是DP,S(x, y)= S(x - 1, y) + S(x, y - 1)。然后比赛结束状态需要认真判断。三来,最后数据量很大(接近10^9)远超一般DP的数据量,分配数组都不行,里面是有规律的。下面是大数据失败的代码:

#include <vector>
#include <iostream>
#include <cstdlib>
#include <cmath>
using namespace std; vector<vector<int> > ma;
int MOD = 1000000007; bool validEnd(int a, int b) {
// a >= b
if (a < 25)
return false;
if (a == 25) {
return ((a - b) >= 2);
}
else {
return ((a - b) == 2);
}
} bool valid(int a, int b) {
// a >= b
if (a < 0 || b < 0)
return false;
if (a <= 25 && b <= 25)
return true;
else
return ((a - b) <= 2);
} int getCount(int a, int b, bool first) {
if (!valid(a, b)) {
return 0;
}
if (!first && validEnd(a, b)) {
return 0;
}
if (ma[a][b] != -1) {
return ma[a][b];
}
ma[a][b] = (getCount(a - 1, b, false) + getCount(a, b - 1, false)) % MOD;
return ma[a][b];
} int main() {
int a, b;
cin >> a >> b;
if (a < b)
swap(a, b);
if (!validEnd(a, b)) {
cout << 0 << endl;
return 0;
}
ma.resize(a + 1);
for (int i = 0; i < ma.size(); i++) {
ma[i].resize(b + 1, -1);
}
ma[0][0] = 1;
int r = getCount(a, b, true);
cout << r << endl;
}

正确做法是观察到,大于25的比赛结束状态都是由24:24经由一个一个平局过来的,没经过一次增加一倍。这样只要改写main函数基本就行了,主要pow由于次数太高,会远超long的值域,需要改写每次都MOD一下。

int pw(int k) {
if (k == 0)
return 1;
if (k == 1)
return 2;
int q = pw(k / 2);
q = (1LL * q * q) % MOD;
if (k % 2 == 1)
return (q + q) % MOD;
else
return q;
} int main() {
int a, b;
cin >> a >> b;
if (a < b)
swap(a, b);
if (!validEnd(a, b)) {
cout << 0 << endl;
return 0;
}
ma.resize(26);
for (int i = 0; i < ma.size(); i++) {
ma[i].resize(26, -1);
}
ma[0][0] = 1;
int r = 0;
if (a == 25) {
r = getCount(a, b, true);
}
else {
r = getCount(24, 24, true);
r = ((int64_t) r * pw(b - 24)) % MOD;
}
cout << r << endl;
}

  

*[hackerrank]Volleyball Match的更多相关文章

  1. CF95C Volleyball

    题意翻译 给出一个图,双向边,边上有权值代表路的距离,然后每个点上有两个值,t,c,t代表能从这个点最远沿边走t,且不能在半路下来,花费是c 现在告诉你起点终点,问最少的花费 点个数1000,边个数1 ...

  2. Codeforces 96D Volleyball(最短路径)

    Petya loves volleyball very much. One day he was running late for a volleyball match. Petya hasn't b ...

  3. Codeforces 95C Volleyball(最短路)

    题目链接:http://codeforces.com/problemset/problem/95/C C. Volleyball time limit per test 2 seconds memor ...

  4. KDD2016,Accepted Papers

    RESEARCH TRACK PAPERS - ORAL Title & Authors NetCycle: Collective Evolution Inference in Heterog ...

  5. Elasticsearch 5.0 中term 查询和match 查询的认识

    Elasticsearch 5.0 关于term query和match query的认识 一.基本情况 前言:term query和match query牵扯的东西比较多,例如分词器.mapping ...

  6. SQL Server-聚焦查询计划Stream Aggregate VS Hash Match Aggregate(二十)

    前言 之前系列中在查询计划中一直出现Stream Aggregate,当时也只是做了基本了解,对于查询计划中出现的操作,我们都需要去详细研究下,只有这样才能对查询计划执行的每一步操作都了如指掌,所以才 ...

  7. Java compiler level does not match解决方法

    从别的地方导入一个项目的时候,经常会遇到eclipse/Myeclipse报Description  Resource Path Location Type Java compiler level d ...

  8. 钉钉开放平台demo调试异常问题解决:hostname in certificate didn't match

    今天研究钉钉的开放平台,结果一个demo整了半天,这帮助系统写的也很难懂.遇到两个问题: 1.首先是执行demo时报unable to find valid certification path to ...

  9. .net正则表达式大全(.net 的 System.Text.RegularExpressions.Regex.Match()方法使用)

    正则表达式的本质是使用一系列特殊字符模式,来表示某一类字符串.正则表达式无疑是处理文本最有力的工具,而.NET的System.dll类库提供的System.Text.RegularExpression ...

随机推荐

  1. c#使用easyhook库进行API钩取

    目标:使calc程序输入的数自动加1 (当别人使用时,总会得不到正确的结果,哈哈) 编写注入程序 ————————————————————————————————— class Program中的方法 ...

  2. 源码编译安装MySQL 5.7.9

    安装CentOS 6.3 配置yum:[root@hank-yoon ~]# cd /etc/yum.repos.d/ [root@hank-yoon yum.repos.d]# mkdir a [r ...

  3. gcc编译出现的问题

    /usr/include/c++/4.8/bits/c++0x_warning.h:32:2: error: #error 解决办法:g++ -std=c++11

  4. VBS基础篇 - FileSystemObject对象

    文件系统是所有操作系统最重要的部分之一,脚本经常会需要对文件及文件夹进行访问和管理,在Vbs中对桌面和文件系统进行访问的顶级对象是FileSystemObject FSO包含的常见对象有:       ...

  5. jquery插件——图片放大器

    用到了JQzoom插件,可以使图片实现放大效果

  6. win7 telnet命令无法使用

    很多做网络测试的同学发现安装win7后,无法使用telnet命令了,提示“telnet不是内部或外部命令,也不是可运行的程序”,但是很需要在win7中使用telnet工具,怎么办? 首先你要要确认你的 ...

  7. win8安装新字体

    http://jingyan.baidu.com/article/e3c78d640a7ab33c4c85f52d.html

  8. c++ memset 函数 及 坑

    #include <string.h> #include <stdio.h> typedef struct ss{ int num; ][]; }tent; tent a; i ...

  9. <顶>vim快捷键映射Map使用

    问题描述: 使用vim中的快捷键映射map,可以自定义快捷键 问题解决: (1)vim模式 (2)map前缀 (3)删除映射Map (4)使用示例 (5)查看快捷键映射 命令行---:verbose ...

  10. 网络编程之ping

    #include <sys/types.h>#include <netinet/ip.h>#include <netdb.h>#include<arpa/in ...