题目链接

Problem Description

As a fan of Doudizhu, WYJ likes collecting playing cards very much.

One day, MJF takes a stack of cards and talks to him: let's play a game and if you win, you can get all these cards. MJF randomly assigns these cards into n heaps, arranges in a row, and sets a value on each heap, which is called "penalty value".

Before the game starts, WYJ can move the foremost heap to the end any times.

After that, WYJ takes the heap of cards one by one, each time he needs to move all cards of the current heap to his hands and face them up, then he turns over some cards and the number of cards he turned is equal to the penaltyvalue.

If at one moment, the number of cards he holds which are face-up is less than the penaltyvalue, then the game ends. And WYJ can get all the cards in his hands (both face-up and face-down).

Your task is to help WYJ maximize the number of cards he can get in the end.So he needs to decide how many heaps that he should move to the end before the game starts. Can you help him find the answer?

MJF also guarantees that the sum of all "penalty value" is exactly equal to the number of all cards.

Input

There are about 10 test cases ending up with EOF.

For each test case:

the first line is an integer n (1≤n≤106), denoting n heaps of cards;

next line contains n integers, the ith integer ai (0≤ai≤1000) denoting there are ai cards in ith heap;

then the third line also contains n integers, the ith integer bi (1≤bi≤1000) denoting the "penalty value" of ith heap is bi.

Output

For each test case, print only an integer, denoting the number of piles WYJ needs to move before the game starts. If there are multiple solutions, print the smallest one.

Sample Input

5

4 6 2 8 4

1 5 7 9 2

Sample Output

4

Hint

[pre]

For the sample input:

  • If WYJ doesn't move the cards pile, when the game starts the state of cards is:

    4 6 2 8 4

    1 5 7 9 2

    WYJ can take the first three piles of cards, and during the process, the number of face-up cards is 4-1+6-5+2-7. Then he can't pay the the "penalty value" of the third pile, the game ends. WYJ will get 12 cards.
  • If WYJ move the first four piles of cards to the end, when the game starts the state of cards is:

    4 4 6 2 8

    2 1 5 7 9

    WYJ can take all the five piles of cards, and during the process, the number of face-up cards is 4-2+4-1+6-5+2-7+8-9. Then he takes all cards, the game ends. WYJ will get 24 cards.

It can be improved that the answer is 4.

huge input, please use fastIO.

[/pre]

分析

给出N堆牌的数量以及该堆牌对应的权值。

WYJ可以在游戏开始前将第一堆牌放到最后的位置上,它可以执行这样的操作任意多次。

游戏开始后:WYJ按照顺序拿起每堆牌,每一次他把当前这堆牌全拿在手里然后牌面面对自己。

然后让牌面面对自己的牌翻过去和当前这堆牌对应权值相等的张数,如果某一时刻它手里的朝向

自己的牌少于当前这堆牌要求翻过去的张数,游戏就结束了,否则它就把当前这堆牌都拿走无论

这些牌是朝向自己还是背对自己。求WYJ在游戏结束时获得最多的牌数时,它在游戏开始前应该

执行多少次将第一堆牌放到最后的这个操作。

测试数据:

5

4 6 2 8 4

1 5 7 9 2

如果游戏开始前不做操作:

4-1 + 6-5 + 2-7 拿到第3堆的时候游戏结束,获得牌数4+6+2 = 12

如果游戏开始前将第一堆牌放到最后:

5

6 2 8 4 4

5 7 9 2 1

6-5 + 2-7 拿到第2堆的时候游戏结束,获得牌数:6 + 2 = 8

在上述基础上再把第一堆牌放到最后:

5

2 8 4 4 6

7 9 2 1 5

2-7 拿到第1堆的时候游戏就结束,获得排数:2

在上述基础上再把第一堆牌放到最后:

8 4 4 6 2

9 2 1 5 7

8-9 = -1 拿到第一堆牌的时候游戏结束,获得牌数: 8

在上述基础上再把第一堆牌放到最后:

4 4 6 2 8

2 1 5 7 9

4-2 + 4-1 + 6-5 + 2- 7 + 8-9 > 0.则牌全拿完了。

继续这样下去:

可以知道在游戏开始前执行四次操作。可以使游戏时获得最大牌数。

代码

#include <iostream>
#include <stdio.h>
#define inf 0x3f3f3f3f
using namespace std;
const int maxn = 1e6;
int num[maxn];// 牌数
int value[maxn]; //权值
int a[maxn]; //差值
int main()
{
int n;
while(~scanf("%d",&n))
{
for(int i = 1; i <= n; i++)
scanf("%d",&num[i]);
for(int i = 1; i <= n; i++)
{
scanf("%d",&value[i]);
a[i] = num[i]-value[i];
}
int Max = -1; ///获得的最大卡片数
int total_cards = 0; ///当前总卡片数
int sum = 0; ///求和
int ans = 0; ///答案
int start = 1; ///第几堆牌是开始
for(int i = start; i <= n; i++)
{
sum += a[i];
total_cards += num[i];
if(sum < 0) ///游戏结束
{
if(total_cards > Max) ///更新答案
{
Max = total_cards;
ans = start;
}
start = i+1; ///下一次开始的位置是i+1
sum = 0;
total_cards = 0;
}
}
///从start ~ n 还要再加上从1~start,因为他们开始前被挪到了后边
for(int i = 1; i < start; i++)
{
sum += a[i];
total_cards += num[i];
if(sum < 0)
{
if(total_cards > Max)
{
Max = total_cards;
ans = start;
}
break;
}
}
if(total_cards > Max)
{
Max = total_cards;
ans = start;
}
printf("%d\n",ans-1); ///从第ans开始,执行操作ans-1次
}
return 0;
}

HDU 6205 (模拟) card card card的更多相关文章

  1. 【BZOJ4391】[Usaco2015 dec]High Card Low Card(贪心)

    [BZOJ4391][Usaco2015 dec]High Card Low Card(贪心) 题面 BZOJ 题解 预处理前缀后缀的结果,中间找个地方合并就好了. #include<iostr ...

  2. 【题解】P3129高低卡(白金)High Card Low Card

    [题解][P3129 USACO15DEC]高低卡(白金)High Card Low Card (Platinum) 考虑贪心. 枚举在第几局改变规则,在改变规则之前,尽量出比它大的最小的牌,在改变规 ...

  3. hdu 6205 card card card 尺取法

    card card card Time Limit: 8000/4000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)To ...

  4. 2017ICPC沈阳网络赛 HDU 6205 -- card card card(最大子段和)

    card card card Time Limit: 8000/4000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)To ...

  5. hdu 6205 card card card 最大子段和

    #include<iostream> #include<deque> #include<memory.h> #include<stdio.h> #inc ...

  6. HDU 6205 card card card ( 思维 )

    题意 : 给定两个序列 a 和 b ,保证 a 数列的和 == b数列的和,从头到尾考虑 (a[i] - b[i]) 的前缀和,直到前缀和为负数则无法进行下去,所得的便是a[1~i]的和,现在有一个操 ...

  7. card card card HDU - 6205

    As a fan of Doudizhu, WYJ likes collecting playing cards very much. One day, MJF takes a stack of ca ...

  8. hdu 6205 card card card

    https://vjudge.net/contest/184514#problem/L题意:排成一行的一堆牌,每堆牌都有一定数量的牌,然后每堆牌对应有一个惩罚值.一开始所有的牌都是正面向下的,并且在游 ...

  9. hdu 6205: card card card【输入挂】

    题目链接 感谢 http://blog.csdn.net/txgang/article/details/77568491 以下供参考 getchar读入法 2683MS FastIO法 MX=1e2 ...

随机推荐

  1. Ubuntu下面 PHPSTORM2017.2破解方法

    Ubuntu下面 PHPSTORM2017.2破解方法 下载破解文件 在 http://idea.lanyus.com/上面新下载一个破解文件. 破解步骤 将JetbrainsCrack-2.6.3_ ...

  2. mysql 数据到 导入导出 总结

    数据库数据的导入和导出受secure_file_priv配置项影响#限制导入导出,null时无法进行数据的导入导出,空时不限制,设置了目录则只能对该目录下的文件进行导入导出show variables ...

  3. PHP 常用函数总结(三)

    7.PHP JSON 格式 json_encode ( mixed $value [, int $options = 0 [, int $depth = 512 ]] ) 返回字符串,包含了 valu ...

  4. Linux里的稀疏文件

    今天发现一个有意思的现象,文件系统大小只有37GB,上面却有一个900GB的文件!查了下,这个叫“稀疏文件”,我理解类似于VMWare里的瘦硬盘模式吧,先预先划出一块空间,然后往里填数据. [root ...

  5. 【BZOJ2423】最长公共子序列(动态规划)

    [BZOJ2423]最长公共子序列(动态规划) 题面 BZOJ 洛谷 题解 今天考试的时候,神仙出题人\(fdf\)把这道题目作为一个二合一出了出来,我除了orz还是只会orz. 对于如何\(O(n^ ...

  6. 【转】查看 Linux 发行版名称和版本号的 8 种方法

    如果你加入了一家新公司,要为开发团队安装所需的软件并重启服务,这个时候首先要弄清楚它们运行在什么发行版以及哪个版本的系统上,你才能正确完成后续的工作.作为系统管理员,充分了解系统信息是首要的任务. 查 ...

  7. Linux及安全实践四——ELF文件格式分析

    Linux及安全实践四——ELF文件格式分析 一.ELF文件格式概述 1. ELF:是一种对象文件的格式,用于定义不同类型的对象文件中都放了什么东西.以及都以什么样的格式去放这些东西. 二.分析一个E ...

  8. Linux内核设计第七周学习总结 Linux内核如何装载和启动一个可执行程序

    陈巧然原创作品 转载请注明出处 <Linux内核分析>MOOC课程http://mooc.study.163.com/course/USTC-100002900 实验目的 使用gdb跟踪s ...

  9. 解题:ZJOI 2013 K大数查询

    题面 树套树,权值线段树套序列线段树,每次在在权值线段树上的每棵子树上做区间加,查询的时候左右子树二分 本来想两个都动态开点的,这样能体现树套树在线的优越性.但是常数太大惹,所以外层直接固定建树了QA ...

  10. Error: cannot allocate vector of size 88.1 Mb问题

    这几天训练模型运行代码的时候,老是提示我说:Error: cannot allocate vector of size 88.1 Mb,只知道分配空间不足. 下面是查资料看到的一些回答: 一.这个是R ...