B1018. 锤子剪刀布 (20)

Discription:

大家应该都会玩“锤子剪刀布”的游戏:两人同时给出手势,胜负规则如图所示:

现给出两人的交锋记录,请统计双方的胜、平、负次数,并且给出双方分别出什么手势的胜算最大。

Input:

输入第1行给出正整数N(<=105),即双方交锋的次数。随后N行,每行给出一次交锋的信息,即甲、乙双方同时给出的的手势。C代表“锤子”、J代表“剪刀”、B代表“布”,第1个字母代表甲方,第2个代表乙方,中间有1个空格。

Output:

输出第1、2行分别给出甲、乙的胜、平、负次数,数字间以1个空格分隔。第3行给出两个字母,分别代表甲、乙获胜次数最多的手势,中间有1个空格。如果解不唯一,则输出按字母序最小的解。

Sample Input:

10
C J
J B
C B
B B
B C
C C
C B
J B
B C
J J

Sample Output:

5 3 2
2 3 5
B B

  1. #include <cstdio>
  2.  
  3. #define MaxSize 3
  4.  
  5. int ListA[MaxSize], ListB[MaxSize], Time[MaxSize];
  6.  
  7. int main()
  8. {
  9. //freopen("E:\\Temp\\input.txt", "r", stdin);
  10.  
  11. int N;
  12. char c1, c2;
  13. scanf("%d", &N);
  14. for(int i=; i<N; i++) {
  15. getchar();
  16. scanf("%c %c", &c1, &c2);
  17. if(c1 == 'B') {
  18. if(c2 == 'B') {
  19. Time[]++;
  20. } else if(c2 == 'C') {
  21. Time[]++;
  22. ListA[]++;
  23. } else {
  24. Time[]++;
  25. ListB[]++;
  26. }
  27. } else if(c1 == 'C') {
  28. if(c2 == 'B') {
  29. Time[]++;
  30. ListB[]++;
  31. } else if(c2 == 'C') {
  32. Time[]++;
  33. } else {
  34. Time[]++;
  35. ListA[]++;
  36. }
  37. } else {
  38. if(c2 == 'B') {
  39. Time[]++;
  40. ListA[]++;
  41. } else if(c2 == 'C') {
  42. Time[]++;
  43. ListB[]++;
  44. } else {
  45. Time[]++;
  46. }
  47. }
  48. }
  49.  
  50. printf("%d %d %d\n%d %d %d\n", Time[], Time[], Time[], Time[], Time[], Time[]);
  51. if(ListA[] >= ListA[]) {
  52. if(ListA[] >= ListA[])
  53. printf("B ");
  54. else
  55. printf("J ");
  56. } else {
  57. if(ListA[] >= ListA[])
  58. printf("C ");
  59. else
  60. printf("J ");
  61. }
  62. if(ListB[] >= ListB[]) {
  63. if(ListB[] >= ListB[])
  64. printf("B\n");
  65. else
  66. printf("J\n");
  67. } else {
  68. if(ListB[] >= ListB[])
  69. printf("C\n");
  70. else
  71. printf("J\n");
  72. }
  73.  
  74. return ;
  75. }
  1. #include <cstdio>
  2.  
  3. int change(char c)
  4. {
  5. if(c == 'B')
  6. return ;
  7. else if(c == 'C')
  8. return ;
  9. else
  10. return ;
  11. }
  12.  
  13. int main()
  14. {
  15. //freopen("E:\\Temp\\input.txt", "r", stdin);
  16.  
  17. char mp[] = {'B', 'C', 'J'};
  18. int n;
  19. scanf("%d", &n);
  20. int times_A[] = {}, times_B[] = {};
  21. int hand_A[] = {}, hand_B[] = {};
  22. char c1, c2;
  23. int k1, k2;
  24. for(int i=; i<n; i++) {
  25. getchar();
  26. scanf("%c %c", &c1, &c2);
  27. k1 = change(c1);
  28. k2 = change(c2);
  29. if((k1+)% == k2) {
  30. times_A[]++;
  31. times_B[]++;
  32. hand_A[k1]++;
  33. } else if(k1 == k2) {
  34. times_A[]++;
  35. times_B[]++;
  36. } else {
  37. times_A[]++;
  38. times_B[]++;
  39. hand_B[k2]++;
  40. }
  41. }
  42.  
  43. printf("%d %d %d\n", times_A[], times_A[], times_A[]);
  44. printf("%d %d %d\n", times_B[], times_B[], times_B[]);
  45. int id1 = , id2 = ;
  46. for(int i=; i<; i++) {
  47. if(hand_A[i] > hand_A[id1])
  48. id1 = i;
  49. if(hand_B[i] > hand_B[id2])
  50. id2 = i;
  51. }
  52. printf("%c %c\n", mp[id1], mp[id2]);
  53.  
  54. return ;
  55. }

A1042. Shuffling Machine (20)

Description:

Shuffling is a procedure used to randomize a deck of playing cards. Because standard shuffling techniques are seen as weak, and in order to avoid "inside jobs" where employees collaborate with gamblers by performing inadequate shuffles, many casinos employ automatic shuffling machines. Your task is to simulate a shuffling machine.

The machine shuffles a deck of 54 cards according to a given random order and repeats for a given number of times. It is assumed that the initial status of a card deck is in the following order:

S1, S2, ..., S13, H1, H2, ..., H13, C1, C2, ..., C13, D1, D2, ..., D13, J1, J2

where "S" stands for "Spade", "H" for "Heart", "C" for "Club", "D" for "Diamond", and "J" for "Joker". A given order is a permutation of distinct integers in [1, 54]. If the number at the i-th position is j, it means to move the card from position i to position j. For example, suppose we only have 5 cards: S3, H5, C1, D13 and J2. Given a shuffling order {4, 2, 5, 3, 1}, the result will be: J2, H5, D13, S3, C1. If we are to repeat the shuffling again, the result will be: C1, H5, S3, J2, D13.

Input:

Each input file contains one test case. For each case, the first line contains a positive integer K (<= 20) which is the number of repeat times. Then the next line contains the given order. All the numbers in a line are separated by a space.

Output:

For each test case, print the shuffling results in one line. All the cards are separated by a space, and there must be no extra space at the end of the line.

Sample Input:

2
36 52 37 38 3 39 40 53 54 41 11 12 13 42 43 44 2 4 23 24 25 26 27 6 7 8 48 49 50 51 9 10 14 15 16 5 17 18 19 1 20 21 22 28 29 30 31 32 33 34 35 45 46 47

Sample Output:

S7 C11 C10 C12 S1 H7 H8 H9 D8 D9 S11 S12 S13 D10 D11 D12 S3 S4 S6 S10 H1 H2 C13 D2 D3 D4 H6 H3 D13 J1 J2 C1 C2 C3 C4 D1 S5 H5 H11 H12 C6 C7 C8 C9 S2 S8 S9 H10 D5 D6 D7 H4 H13 C5

  1. #include <cstdio>
  2.  
  3. #define MaxSize 55
  4.  
  5. int List1[MaxSize], List2[MaxSize], List3[MaxSize];
  6.  
  7. int main()
  8. {
  9. //freopen("E:\\Temp\\input.txt", "r", stdin);
  10.  
  11. int N, temp;
  12. scanf("%d", &N);
  13. for(int i=; i<MaxSize; i++) {
  14. List1[i] = i;
  15. scanf("%d", &List2[i]);
  16. }
  17. for(int i=; i<N; i++) {
  18. for(int j=; j<MaxSize; j++) {
  19. List3[List2[j]] = List1[j];
  20. }
  21. for(int k=; k<MaxSize; k++) {
  22. List1[k] = List3[k];
  23. }
  24. }
  25.  
  26. for(int i=; i<MaxSize-; i++) {
  27. if(List1[i] > ) {
  28. printf("J%d ", List1[i]-);
  29. } else if(List1[i] > ) {
  30. printf("D%d ", List1[i]-);
  31. } else if(List1[i] > ) {
  32. printf("C%d ", List1[i]-);
  33. } else if(List1[i] > ) {
  34. printf("H%d ", List1[i]-);
  35. } else {
  36. printf("S%d ", List1[i]);
  37. }
  38. }
  39. if(List1[MaxSize-] > ) {
  40. printf("J%d\n", List1[MaxSize-]-);
  41. } else if(List1[MaxSize-] > ) {
  42. printf("D%d\n", List1[MaxSize-]-);
  43. } else if(List1[MaxSize-] > ) {
  44. printf("C%d\n", List1[MaxSize-]-);
  45. } else if(List1[MaxSize-] > ) {
  46. printf("H%d\n", List1[MaxSize-]-);
  47. } else {
  48. printf("S%d\n", List1[MaxSize-]);
  49. }
  50.  
  51. return ;
  52. }
  1. #include <cstdio>
  2.  
  3. const int N = ;
  4. char mp[] = {'S', 'H', 'C', 'D', 'J'};
  5. int start[N], end[N], next[N];
  6.  
  7. int main()
  8. {
  9. //freopen("E:\\Temp\\input.txt", "r", stdin);
  10.  
  11. int K;
  12. scanf("%d", &K);
  13. for(int i=; i<=N; i++)
  14. start[i] = i;
  15. for(int i=; i<=N; i++)
  16. scanf("%d", &next[i]);
  17.  
  18. for(int step = ; step < K; step++) {
  19. for(int i=; i<=N; i++)
  20. end[next[i]] = start[i];
  21. for(int i=; i<=N; i++)
  22. start[i] = end[i];
  23. }
  24.  
  25. for(int i=; i<=N; i++) {
  26. if(i != )
  27. printf(" ");
  28. start[i]--;
  29. printf("%c%d", mp[start[i]/], start[i]%+);
  30. }
  31.  
  32. return ;
  33. }

A1046.Shortest Distance (20)

Description:

The task is really simple: given N exits on a highway which forms a simple cycle, you are supposed to tell the shortest distance between any pair of exits.

Input:

Each input file contains one test case. For each case, the first line contains an integer N (in [3, 105]), followed by N integer distances D1 D2 ... DN, where Di is the distance between the i-th and the (i+1)-st exits, and DN is between the N-th and the 1st exits. All the numbers in a line are separated by a space. The second line gives a positive integer M (<=104), with M lines follow, each contains a pair of exit numbers, provided that the exits are numbered from 1 to N. It is guaranteed that the total round trip distance is no more than 107.

Output:

For each test case, print your results in M lines, each contains the shortest distance between the corresponding given pair of exits.

Sample Input:

5 1 2 4 14 9
3
1 3
2 5
4 1

Sample Output:

3

10

7

  1. #include <cstdio>
  2. #include <algorithm>
  3. using namespace std;
  4.  
  5. const int MAXN = ;
  6. int dis[MAXN], A[MAXN];
  7.  
  8. int main()
  9. {
  10. int sum = , query, n, left, right;
  11. scanf("%d", &n);
  12. for(int i=; i<=n; i++) {
  13. scanf("%d", &A[i]);
  14. sum += A[i];
  15. dis[i] = sum;
  16. }
  17. scanf("%d", &query);
  18. for(int i=; i<query; i++) {
  19. scanf("%d%d", &left, &right);
  20. if(left > right)
  21. swap(left, right);
  22. int temp = dis[right-]-dis[left-];
  23. printf("%d\n", min(temp, sum-temp));
  24. }
  25.  
  26. return ;
  27. }

A1065. A+B and C (64bit) (20)

Description:

Given three integers A, B and C in [-263, 263], you are supposed to tell whether A+B > C.

Input:

The first line of the input gives the positive number of test cases, T (<=10). Then T test cases follow, each consists of a single line containing three integers A, B and C, separated by single spaces.

Ouput:

For each test case, output in one line "Case #X: true" if A+B>C, or "Case #X: false" otherwise, where X is the case number (starting from 1).

Sample Input:

3
1 2 3
2 3 4
9223372036854775807 -9223372036854775808 0

Output:

Case #1: false
Case #2: true
Case #3: false

  1. #include <cstdio>
  2.  
  3. int main()
  4. {
  5. //freopen("E:\\Temp\\input.txt", "r", stdin);
  6.  
  7. int T, tcase = ;
  8. scanf("%d", &T);
  9. while(T--) {
  10. long long a, b, c;
  11. scanf("%lld%lld%lld", &a, &b, &c);
  12. long long res = a+b;
  13. bool flag;
  14. if(a> && b> && res<)
  15. flag = true;
  16. else if(a< && b< && res>=)
  17. flag = false;
  18. else if(res > c)
  19. flag = true;
  20. else
  21. flag = false;
  22. if(flag == true)
  23. printf("Case #%d: true\n", tcase++);
  24. else
  25. printf("Case #%d: false\n", tcase++);
  26. }
  27.  
  28. return ;
  29. }

B1010. 一元多项式求导 (25)

Description:

设计函数求一元多项式的导数。(注:xn(n为整数)的一阶导数为n*xn-1。)

Input:

以指数递降方式输入多项式非零项系数和指数(绝对值均为不超过1000的整数)。数字间以空格分隔。

Output:

以与输入相同的格式输出导数多项式非零项的系数和指数。数字间以空格分隔,但结尾不能有多余空格。注意“零多项式”的指数和系数都是0,但是表示为“0 0”。

Sample Input:

3 4 -5 2 6 1 -2 0

Sample Output:

12 3 -10 1 6 0

  1. #include <cstdio>
  2.  
  3. int main()
  4. {
  5. //freopen("E:\\Temp\\input.txt", "r", stdin);
  6.  
  7. int a[] = {};
  8. int k, e, counter = ;
  9. while(scanf("%d%d", &k, &e) != EOF) {
  10. a[e] = k;
  11. }
  12. a[] = ;
  13.  
  14. for(int i=; i<=; ++i) {
  15. a[i-] = a[i]*i;
  16. a[i] = ;
  17. if(a[i-] != )
  18. counter++;
  19. }
  20. if(counter == )
  21. printf("0 0\n");
  22. else {
  23. for(int i=; i>=; --i) {
  24. if(a[i] != ) {
  25. printf("%d %d", a[i], i);
  26. counter--;
  27. if(counter != )
  28. printf(" ");
  29. }
  30. }
  31. }
  32.  
  33. return ;
  34. }

A1002. A+B for Polynomials (25)

Description:

This time, you are supposed to find A+B where A and B are two polynomials.

Input:

Each input file contains one test case. Each case occupies 2 lines, and each line contains the information of a polynomial: K N1 aN1 N2 aN2 ... NK aNK, where K is the number of nonzero terms in the polynomial, Ni and aNi (i=1, 2, ..., K) are the exponents and coefficients, respectively. It is given that 1 <= K <= 10,0 <= NK < ... < N2 < N1 <=1000.

Output:

For each test case you should output the sum of A and B in one line, with the same format as the input. Notice that there must be NO extra space at the end of each line. Please be accurate to 1 decimal place.

Sample Input:

2 1 2.4 0 3.2
2 2 1.5 1 0.5

Sample Output:

3 2 1.5 1 2.9 0 3.2

  1. #include <cstdio>
  2.  
  3. #define MaxSize 1010
  4. double List[MaxSize];
  5.  
  6. int main()
  7. {
  8. //freopen("E:\\Temp\\input.txt", "r", stdin);
  9.  
  10. int K, expon, counter = ;
  11. double coef;
  12. scanf("%d", &K);
  13. for(int i=; i<K; ++i) {
  14. scanf("%d %lf", &expon, &coef);
  15. List[expon] += coef;
  16. }
  17. scanf("%d", &K);
  18. for(int i=; i<K; ++i) {
  19. scanf("%d %lf", &expon, &coef);
  20. List[expon] += coef;
  21. }
  22.  
  23. for(int i=; i<MaxSize; ++i) {
  24. if(List[i] != )
  25. ++counter;
  26. }
  27. printf("%d", counter);
  28. for(int i=MaxSize-; i>=; --i) {
  29. if(List[i] != ) {
  30. printf(" %d %.1f", i, List[i]);
  31. }
  32. }
  33.  
  34. return ;
  35. }

A1009. Product of Polynomials (25)

Description:

This time, you are supposed to find A*B where A and B are two polynomials.

Input:

Each input file contains one test case. Each case occupies 2 lines, and each line contains the information of a polynomial: K N1 aN1 N2 aN2 ... NK aNK, where K is the number of nonzero terms in the polynomial, Ni and aNi (i=1, 2, ..., K) are the exponents and coefficients, respectively. It is given that 1 <= K <= 10, 0 <= NK < ... < N2 < N1 <=1000.

Output:

For each test case you should output the product of A and B in one line, with the same format as the input. Notice that there must be NO extra space at the end of each line. Please be accurate up to 1 decimal place.

Sample Input:

2 1 2.4 0 3.2
2 2 1.5 1 0.5

Sample Output:

3 3 3.6 2 6.0 1 1.6

  1. #include <cstdio>
  2.  
  3. #define MaxSize 2010
  4. double List1[MaxSize], List2[MaxSize];
  5.  
  6. int main()
  7. {
  8. //freopen("E:\\Temp\\input.txt", "r", stdin);
  9.  
  10. int K, expon, counter = ;
  11. double coef;
  12. scanf("%d", &K);
  13. for(int i=; i<K; ++i) {
  14. scanf("%d %lf", &expon, &coef);
  15. List1[expon] += coef;
  16. }
  17. scanf("%d", &K);
  18. for(int i=; i<K; ++i) {
  19. scanf("%d %lf", &expon, &coef);
  20. for(int j=; j<MaxSize; j++)
  21. List2[expon+j] += List1[j]*coef;
  22. }
  23.  
  24. for(int i=; i<MaxSize; ++i) {
  25. if(List2[i] != )
  26. ++counter;
  27. }
  28. printf("%d", counter);
  29. for(int i=MaxSize-; i>=; --i) {
  30. if(List2[i] != )
  31. printf(" %d %.1f", i, List2[i]);
  32. }
  33.  
  34. return ;
  35. }
  1. #include <cstdio>
  2.  
  3. struct Poly {
  4. int exp;
  5. double cof;
  6. }poly[];
  7. double ans[];
  8.  
  9. int main()
  10. {
  11. int n, m, number = ;
  12. scanf("%d", &n);
  13. for(int i=; i<n; ++i)
  14. scanf("%d %lf", &poly[i].exp, &poly[i].cof);
  15. scanf("%d", &m);
  16. for(int i=; i<m; ++i) {
  17. int exp;
  18. double cof;
  19. scanf("%d %lf", &exp, &cof);
  20. for(int j=; j<n; j++)
  21. ans[exp+poly[j].exp] += (cof*poly[j].cof);
  22. }
  23.  
  24. for(int i=; i<=; ++i) {
  25. if(ans[i] != )
  26. ++number;
  27. }
  28.  
  29. printf("%d", number);
  30. for(int i=; i>=; --i) {
  31. if(ans[i] != )
  32. printf(" %d %.1f", i, ans[i]);
  33. }
  34.  
  35. return ;
  36. }

PAT/简单模拟习题集(二)的更多相关文章

  1. PAT/简单模拟习题集(一)

    B1001.害死人不偿命的(3n+1)猜想 (15) Description: 卡拉兹(Callatz)猜想: 对任何一个自然数n,如果它是偶数,那么把它砍掉一半:如果它是奇数,那么把(3n+1)砍掉 ...

  2. java web学习总结(二十二) -------------------简单模拟SpringMVC

    在Spring MVC中,将一个普通的java类标注上Controller注解之后,再将类中的方法使用RequestMapping注解标注,那么这个普通的java类就够处理Web请求,示例代码如下: ...

  3. JavaWeb学习总结(四十九)——简单模拟Sping MVC

    在Spring MVC中,将一个普通的java类标注上Controller注解之后,再将类中的方法使用RequestMapping注解标注,那么这个普通的java类就够处理Web请求,示例代码如下: ...

  4. (hdu step 8.1.6)士兵队列训练问题(数据结构,简单模拟——第一次每2个去掉1个,第二次每3个去掉1个.知道队伍中的人数&lt;=3,输出剩下的人 )

    题目: 士兵队列训练问题 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total ...

  5. spring之mvc原理分析及简单模拟实现

    在之前的一篇博客中已经简单的实现了spring的IOC和DI功能,本文将在之前的基础上实现mvc功能. 一 什么是MVC MVC简单的说就是一种软件实现的设计模式,将整个系统进行分层,M(model ...

  6. C++笔记(7)——一些模拟题:简单模拟、查找元素、图形输出、日期处理、进制转换、字符串处理

    以下内容基本来自<算法笔记>,作者为胡凡,建议直接买书看,我这里只是摘抄部分当笔记,不完整的. 简单模拟 就是一类"题目怎么说你就怎么做"的题目.这类题目不涉及算法,只 ...

  7. sort回调的简单模拟

    本来是准备讲CPP中的std::sort,但因为最近Java用得多,不知怎么的便习惯性走Java角度看问题了,所以这篇文章看起来估计会有点奇怪... 一.简单模拟sort回调 std::sort函数本 ...

  8. WPF简单模拟QQ登录背景动画

    介绍 之所以说是简单模拟,是因为我不知道QQ登录背景动画是怎么实现的.这里是通过一些办法把它简化了,做成了类似的效果 效果图 大体思路 首先把背景看成是一个4行8列的点的阵距,X轴Y轴都是距离70.把 ...

  9. Linux 内核 链表 的简单模拟(2)

    接上一篇Linux 内核 链表 的简单模拟(1) 第五章:Linux内核链表的遍历 /** * list_for_each - iterate over a list * @pos: the & ...

随机推荐

  1. [翻译]:怎样从C/C++代码中对C#进行回调

    声明:网络上类似的中文博客大有存在,本人知识水平有限,业余爱好,也是为了备份收藏How to make a callback to C# from C/C++ code 本着共享知识的初衷,翻译一份给 ...

  2. 粗略读完opengl

    清明节前粗略读完了opengl编程指南第七版,对opengl有了一个大体的了解,并且了解的也很肤浅.有了计算机图形学,线性代数的基础,读起来也不像以前那么吃力了.从简单的绘制点,直线,多边形,到视图变 ...

  3. 如何将数据库中的表导入到PowerDesigner中

    1.        打开PowerDesigner12,在菜单中按照如下方式进行操作file->Reverse Engineer->DataBase 点击后,弹出 New Physical ...

  4. 在c#中IO流读写操作

    1.使用FileStream读写文件 文件头: using System;using System.Collections.Generic;using System.Text;using System ...

  5. Getting Started With Hazelcast 读书笔记(第一章)

    第一章:数据集群的演化与 早期的服务器架构 显然,应用是可扩展的,但是由于是集中式服务器,随着数据库性能达到极限,再想扩展就变得极端困难,于是出现了缓存.    缓存显然再次提升了可扩展性,减轻了数据 ...

  6. rdlc报表DEMO

    rdlc报表demo  .net 4.0  vs2013 文本框,图像控件,checkbox样式的打印 下载链接

  7. 老版mapreduce跑streaming作业多路输出的方法

    1. 继承MultipleTextOutputFormat实现自己的输出类. 2. 重写generateFileNameForKeyValue方法,返回输出的名字,可通过"/"分割 ...

  8. 时间管理的若干Tips

    时间管理的若干Tips 记下来 再好的记性也不如一支笔与一个本子. 买一支好点的笔于一个好点的本子,让自己有书写的欲望,将todo事项记下来. 小目标 太大太远的目标会使人气馁.通过将大目标分解再分解 ...

  9. unity 实现物体破碎效果的一些方法

    游戏越来越接近现实的感觉,如果有一个真是的 虚拟现实设备,可能我们真的会感觉是在真实世界.场景的逼真是在渲染效果.角色AI.游戏逻辑.物理效果等等一起导致的结果.现在游戏越来越大,除了渲染,物理估计是 ...

  10. js 字符串格式化方法

    String.prototype.format = function(args) { var result = this; if (arguments.length > 0) { if (arg ...