首页 > 代码库 > 寒假集训.Lucky Tickets. Easy!
寒假集训.Lucky Tickets. Easy!
Lucky Tickets. Easy!
Time Limit:2000MS Memory Limit:65536KB 64bit IO Format:%I64d & %I64uDescription
Background
The public transport administration of Ekaterinburg is anxious about the fact that passengers don’t like to pay for passage doing their best to avoid the fee. All the measures that had been taken (hard currency premiums for all of the chiefs, increase in conductors’ salaries, reduction of number of buses) were in vain. An advisor especially invited from the Ural State University says that personally he doesn’t buy tickets because he rarely comes across the lucky ones (a ticket is lucky if the sum of the first three digits in its number equals to the sum of the last three ones). So, the way out is found — of course, tickets must be numbered in sequence, but the number of digits on a ticket may be changed. Say, if there were only two digits, there would have been ten lucky tickets (with numbers 00, 11, …, 99). Maybe under the circumstances the ratio of the lucky tickets to the common ones is greater? And what if we take four digits? A huge work has brought the long-awaited result: in this case there will be 670 lucky tickets. But what to do if there are six or more digits?
Problem
So you are to save public transport of our city. Write a program that determines a number of lucky tickets for the given number of digits. By the way, there can’t be more than nine digits on one ticket.
Input
contains a positive even integer not greater than 9.
Output
should contain a number of tickets such that the sum of the first half of digits is equal to the sum of the second half of digits.
Sample Input
input | output |
---|---|
4 | 670 |
<script src="https://code.csdn.net/snippets/594835.js" type="text/javascript"></script>
这是别人的代码:
#include<stdio.h> #include<string.h> #define MAXD 10 #define MAXS 50 const int N = 4, S = 40; int f[MAXD][MAXS], ans[MAXD]; void prepare() { int i, j, k, sum; memset(f, 0, sizeof(f)); f[0][0] = 1; for(i = 1; i <= N; i ++) { sum = k = ans[i] = 0; for(j = 0; j <= S; j ++) { if(j - k > 9) sum -= f[i - 1][k ++]; sum += f[i - 1][j]; f[i][j] = sum; ans[i] += f[i][j] * f[i][j]; } } } int main() { int n; prepare(); while(scanf("%d", &n) == 1) { if(n & 1) printf("0\n"); else printf("%d\n", ans[n / 2]); } return 0; }
寒假集训.Lucky Tickets. Easy!
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。