sicily-1029 Rabbit

一.      题意(0.04s)

    每一对成熟的兔子可以生一对兔子,兔子在m个月之后成熟,假设兔子都不会死,计算d个月后一共有多少只兔子。

二.      要高精度加法(用string)

三.      公式:ans[m] = ans[m - 1] + ans[m-M]。

    这里M最大值只可能是10,所以开个最大存10个string的数组。把1到N分成数量的M的小组,重复使用数组里面的数据,节省空间。

四.      源代码

    

 1 //
 2 //  main.cpp
 3 //  sicily-1029
 4 //
 5 //  Created by ashley on 14-12-5.
 6 //  Copyright (c) 2014年 ashley. All rights reserved.
 7 //
 8
 9 #include <iostream>
10 #include <string>
11 using namespace std;
12 string ans[10];
13 string clearZeros(string data)
14 {
15     if (data[0] == ‘0‘) {
16         int key = (int) data.length() - 1;
17         for (int i = 0; i < data.length(); i++) {
18             if (data[i] != ‘0‘) {
19                 key = i;
20                 break;
21             }
22         }
23         data.erase(0, key);
24     }
25     if (data == "") {
26         data = "0";
27     }
28     return data;
29 }
30
31 //对位操作
32 void countPoint(string &operand1, string &operand2)
33 {
34     while (operand1.length() < operand2.length()) {
35         operand1 = "0" + operand1;
36     }
37     while (operand1.length() > operand2.length()) {
38         operand2 = "0" + operand2;
39     }
40 }
41
42 string addition(string addent, string adder)
43 {
44     //先对位,在加数和被加数前面适当补0,使他们包含相同的位数
45     countPoint(addent, adder);
46     //前面再补一个0,确定和的最多位数
47     addent = "0" + addent;
48     adder = "0" + adder;
49     //从低位开始,对应位相加,结果写进被加数中,如果有进位,直接给被加数前一位加1
50     for (int i = (int) addent.length() - 1; i > 0; i--) {
51         addent[i] = addent[i] + adder[i] - 48;
52         if (addent[i] > ‘9‘) {
53             addent[i] = addent[i] - 10;
54             addent[i - 1] = addent[i - 1] + 1;
55         }
56     }
57     return clearZeros(addent);
58 }
59
60 int main(int argc, const char * argv[])
61 {
62     int month, deadline;
63     while (cin >> month >> deadline) {
64         if (month == 0 && deadline == 0) {
65             break;
66         }
67         string increment;
68         increment = "1";
69         ans[0] = "1";
70         for (int i = 1; i <= month - 1; i++) {
71             ans[i] = addition(ans[i - 1], increment);
72         }
73         for (int i = month; i <= deadline; i++) {
74             increment = ans[i % month];
75             ans[i % month] = addition(ans[(i - 1) % month], increment);
76         }
77         cout << ans[deadline % month] << endl;
78     }
79     return 0;
80 }
时间: 2024-10-12 17:01:07

sicily-1029 Rabbit的相关文章

编程题目分类(剪辑)

1. 编程入门 2. 数据结构 3. 字符串 4. 排序 5. 图遍历 6. 图算法 7. 搜索:剪枝,启发式搜索 8. 动态规划/递推 9. 分治/递归 10. 贪心 11. 模拟 12. 算术与代数 13. 组合问题 14. 数论 15. 网格,几何,计算几何 [编程入门] PC 110101, uva 100, The 3n+1 problem, 难度 1 PC 110102, uva 10189, Minesweeper, 难度 1 PC 110103, uva 10137, The T

hdu 5030 Rabbit&#39;s String(后缀数组&amp;二分)

Rabbit's String Time Limit: 40000/20000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others) Total Submission(s): 288    Accepted Submission(s): 108 Problem Description Long long ago, there lived a lot of rabbits in the forest. One day, the

[2016-03-27][HDU][1029][Ignatius and the Princess IV]

时间:2016-03-30 22:03:01 星期三 题目编号:[2016-03-27][HDU][1029][Ignatius and the Princess IV] 题目大意:给定n个数字,输出其中出现次数超过n/2的数字 #include <algorithm> #include <cstdio> using namespace std; const int maxn = 1E6 + 10; int a[maxn]; int main(){ int n; while(~sc

HDU4057 Rescue the Rabbit(AC自动机+状压DP)

题目大概是给几个DNA片段以及它们各自的权值,如果一个DNA包含某个片段那么它的价值就加上这个片段的权值,同时包含多个相同DNA片段也只加一次,问长度l的DNA可能的最大价值. 与HDU2825大同小异. dp[i][j][S]表示长度i(自动机转移i步).后缀状态为自动机第j个结点.包含的DNA片段为集合S 的DNA最大价值 dp[0][0][0]=0 我为人人转移,从dp[i][j][S]向ATCG四个方向更新dp[i+1][j'][S'] 注意的是要用滚动数组,不然要开上百兆数组. 用滚动

code vs 1029 遍历问题 区间dp

http://codevs.cn/problem/1029/ 给出一棵二叉树(节点是小写字符)的按照先序遍历和后续遍历得到的字符串,其实就是求有多少和二叉树的先序遍历和后序遍历满足这两个字符串.区间dp:dp(l, r, a, b)表示s字符串的(l, r)段和t字符串的(a, b)段相匹配的方案数.那么s[l]和t[b]必须一样,因为这两个是这一段的根节点.然后我们再枚举(l,r)的左子树(l+1,k)和(a,b)的左子树(a,a+k-l-1);dp(l,r,a,b) = sum(dp(l+1

HDU1849 Rabbit and Grass()

用异或看取得的值是否为0判断 思想换没搞懂 #include<stdio.h> int main() { int ans,n,a; while(scanf("%d",&n),n){ ans=0; while(n--){ scanf("%d",&a); ans=ans^a; } if(ans==0) printf("Grass Win!\n"); else printf("Rabbit Win!\n"

1029: [JSOI2007]建筑抢修

1029: [JSOI2007]建筑抢修 Time Limit: 4 Sec  Memory Limit: 162 MBSubmit: 2382  Solved: 1033[Submit][Status] Description 小刚在玩JSOI提供的一个称之为“建筑抢修”的电脑游戏:经过了一场激烈的战斗,T部落消灭了所有z部落的入侵者.但是T部落的基地里已经有N个建筑设施受到了严重的损伤,如果不尽快修复的话,这些建筑设施将会完全毁坏.现在的情况是:T部落基地里只有一个修理工人,虽然他能瞬间到达

HDU 4057 Rescue the Rabbit (AC自动机+DP)

http://acm.hdu.edu.cn/showproblem.php?pid=4057 Rescue the Rabbit Time Limit: 20000/10000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 1482    Accepted Submission(s): 430 Problem Description Dr. X is a biologist,

BZOJ 1029 [JSOI2007] 建筑抢修(贪心)

1029: [JSOI2007]建筑抢修 Time Limit: 4 Sec  Memory Limit: 162 MBSubmit: 2285  Solved: 1004[Submit][Status] Description 小刚在玩JSOI提供的一个称之为“建筑抢修”的电脑游戏:经过了一场激烈的战斗,T部落消灭了所有z部落的入侵者.但是T部落的基地里已经有N个建筑设施受到了严重的损伤,如果不尽快修复的话,这些建筑设施将会完全毁坏.现在的情况是:T部落基地里只有一个修理工人,虽然他能瞬间到达

HDU - 1849 - Rabbit and Grass

先上题目: Rabbit and Grass Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 2097    Accepted Submission(s): 1579 Problem Description 大学时光是浪漫的,女生是浪漫的,圣诞更是浪漫的,但是Rabbit和Grass这两个大学女生在今年的圣诞节却表现得一点都不浪漫:不去逛