比赛 20111102 评测结果 AAAAA
题目名称 个人所得税 最终得分 100
用户昵称 临轩听雨ゐ 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2011-11-02 21:09:55
显示代码纯文本
  1. #include <iostream>
  2. #include <cstdio>
  3. #include <iomanip>
  4. #include <cstring>
  5. using namespace std;
  6. int pay[50001][13];
  7. double income(int s)
  8. {
  9. double w=s;
  10. if (w<=4000)
  11. w-=800;
  12. else
  13. w*=0.8;
  14. if (w<=0)
  15. return 0;
  16. else if (w<=20000)
  17. return w*0.2;
  18. else if (w<=50000)
  19. return 4000+(w-20000)*0.3;
  20. else
  21. return 4000+9000+(w-50000)*0.4;
  22. }
  23. double pay1(int s)
  24. {
  25. double w=s-800;
  26. if (w<=0)
  27. return 0;
  28. else if (w<=500)
  29. return w*0.05;
  30. else if (w<=2000)
  31. return 25+(w-500)*0.1;
  32. else if (w<=5000)
  33. return 25+150+(w-2000)*0.15;
  34. else if (w<=20000)
  35. return 25+150+450+(w-5000)*0.2;
  36. else if (w<=40000)
  37. return 25+150+450+3000+(w-20000)*0.25;
  38. else if (w<=60000)
  39. return 25+150+450+3000+5000+(w-40000)*0.3;
  40. else if (w<=80000)
  41. return 25+150+450+3000+5000+6000+(w-60000)*0.35;
  42. else if (w<=100000)
  43. return 25+150+450+3000+5000+6000+7000+(w-80000)*0.40;
  44. else
  45. return 25+150+450+3000+5000+6000+7000+8000+(w-100000)*0.45;
  46. }
  47.  
  48. int main()
  49. {
  50. freopen ("personaltax.in","r",stdin);
  51. freopen ("personaltax.out","w",stdout);
  52. int m;
  53. int i,j;
  54. double ans=0;
  55. string way,f;
  56. int num,mon,y;
  57. cin>>m;
  58. while(m)
  59. {
  60. cin>>way;
  61. if(way=="#") break;
  62. else
  63. {
  64. cin>>num>>y>>f>>mon;
  65. if(way=="INCOME") ans+=income(mon);
  66. if(way=="PAY") pay[num][y]+=mon;
  67. }
  68. }
  69. for (i=1;i<=m;i++)
  70. {
  71. for (j=1;j<=12;j++)
  72. ans+=pay1(pay[i][j]);
  73. }
  74. printf("%.2lf",ans);
  75. return 0;
  76. }