time limit per test2 seconds

memory limit per test256 megabytes

inputstandard input

outputstandard output

Mr. Funt now lives in a country with a very specific tax laws. The total income of mr. Funt during this year is equal to n (n ≥ 2) burles and the amount of tax he has to pay is calculated as the maximum divisor of n (not equal to n, of course). For example, if n = 6 then Funt has to pay 3 burles, while for n = 25 he needs to pay 5 and if n = 2 he pays only 1 burle.

As mr. Funt is a very opportunistic person he wants to cheat a bit. In particular, he wants to split the initial n in several parts n1 + n2 + … + nk = n (here k is arbitrary, even k = 1 is allowed) and pay the taxes for each part separately. He can’t make some part equal to 1 because it will reveal him. So, the condition ni ≥ 2 should hold for all i from 1 to k.

Ostap Bender wonders, how many money Funt has to pay (i.e. minimal) if he chooses and optimal way to split n in parts.

Input

The first line of the input contains a single integer n (2 ≤ n ≤ 2·109) — the total year income of mr. Funt.

Output

Print one integer — minimum possible number of burles that mr. Funt has to pay as a tax.

Examples

input

4

output

2

input

27

output

3

【题目链接】:http://codeforces.com/contest/735/problem/D

【题解】



哥德巴赫猜想:

任何一个大于2的偶数都能分解成两个质数的和;

所以;如果输入的n为2;就输出1;

如果大于n;

则判断是否为偶数;为偶数就输出2;

如果为奇数;

①先判断是不是质数,是质数就输出1

②不是质数的话就找离它最近的质数now(now要小于等于n-2);然后用这个数n减去now;得到差;因为n为奇数、且质数肯定是奇数,所以n-now必然为偶数;

这个时候如果n-now==2,则总的答案为1+1==2,如果n-now!=2,则n-now是大于2的偶数,则n-now可以分解成两个质数的和;则答案为1+2==3;



【完整代码】

  1. #include <cstdio>
  2. #include <cstdlib>
  3. #include <cmath>
  4. #include <set>
  5. #include <map>
  6. #include <iostream>
  7. #include <algorithm>
  8. #include <cstring>
  9. #include <queue>
  10. #include <vector>
  11. #include <stack>
  12. #include <string>
  13. using namespace std;
  14. #define lson l,m,rt<<1
  15. #define rson m+1,r,rt<<1|1
  16. #define LL long long
  17. #define rep1(i,a,b) for (int i = a;i <= b;i++)
  18. #define rep2(i,a,b) for (int i = a;i >= b;i--)
  19. #define mp make_pair
  20. #define pb push_back
  21. #define fi first
  22. #define se second
  23. typedef pair<int,int> pii;
  24. typedef pair<LL,LL> pll;
  25. void rel(LL &r)
  26. {
  27. r = 0;
  28. char t = getchar();
  29. while (!isdigit(t) && t!='-') t = getchar();
  30. LL sign = 1;
  31. if (t == '-')sign = -1;
  32. while (!isdigit(t)) t = getchar();
  33. while (isdigit(t)) r = r * 10 + t - '0', t = getchar();
  34. r = r*sign;
  35. }
  36. void rei(int &r)
  37. {
  38. r = 0;
  39. char t = getchar();
  40. while (!isdigit(t)&&t!='-') t = getchar();
  41. int sign = 1;
  42. if (t == '-')sign = -1;
  43. while (!isdigit(t)) t = getchar();
  44. while (isdigit(t)) r = r * 10 + t - '0', t = getchar();
  45. r = r*sign;
  46. }
  47. //const int MAXN = x;
  48. const int dx[5] = {0,1,-1,0,0};
  49. const int dy[5] = {0,0,0,-1,1};
  50. const double pi = acos(-1.0);
  51. int now;
  52. bool is(int x)
  53. {
  54. int ma = sqrt(x);
  55. rep1(i,2,ma)
  56. if (x%i==0)
  57. return false;
  58. return true;
  59. }
  60. int n;
  61. int main()
  62. {
  63. //freopen("F:\\rush.txt","r",stdin);
  64. rei(n);
  65. if (n==2)
  66. {
  67. puts("1");
  68. }
  69. else
  70. {
  71. if (n%2==0)
  72. {
  73. puts("2");
  74. return 0;
  75. }
  76. int now = n;
  77. while (true)
  78. {
  79. if (((n-now>=2) || (n-now==0))&&is(now))
  80. {
  81. n-=now;
  82. break;
  83. }
  84. now--;
  85. }
  86. if (n==0)
  87. cout <<1<<endl;
  88. else
  89. {
  90. int tt = n;
  91. if (tt!=2)
  92. puts("3");
  93. else
  94. puts("2");
  95. }
  96. }
  97. return 0;
  98. }

【21.21%】【codeforces round 382D】Taxes的更多相关文章

  1. 【57.97%】【codeforces Round #380A】Interview with Oleg

    time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard ou ...

  2. 【42.86%】【Codeforces Round #380D】Sea Battle

    time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard ou ...

  3. 【26.83%】【Codeforces Round #380C】Road to Cinema

    time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard ou ...

  4. 【50.88%】【Codeforces round 382B】Urbanization

    time limit per test2 seconds memory limit per test256 megabytes inputstandard input outputstandard o ...

  5. 【Codeforces Round 1137】Codeforces #545 (Div. 1)

    Codeforces Round 1137 这场比赛做了\(A\).\(B\),排名\(376\). 主要是\(A\)题做的时间又长又交了两次\(wa4\)的. 这两次错误的提交是因为我第一开始想的求 ...

  6. 【Codeforces Round 1132】Educational Round 61

    Codeforces Round 1132 这场比赛做了\(A\).\(B\).\(C\).\(F\)四题,排名\(89\). \(A\)题\(wa\)了一次,少考虑了一种情况 \(D\)题最后做出来 ...

  7. 【Codeforces Round 1120】Technocup 2019 Final Round (Div. 1)

    Codeforces Round 1120 这场比赛做了\(A\).\(C\)两题,排名\(73\). \(A\)题其实过的有点莫名其妙...就是我感觉好像能找到一个反例(现在发现我的算法是对的... ...

  8. 【Codeforces Round 1129】Alex Lopashev Thanks-Round (Div. 1)

    Codeforces Round 1129 这场模拟比赛做了\(A1\).\(A2\).\(B\).\(C\),\(Div.1\)排名40. \(A\)题是道贪心,可以考虑每一个站点是分开来的,把目的 ...

  9. 【Codeforces Round 1117】Educational Round 60

    Codeforces Round 1117 这场比赛做了\(A\).\(B\).\(C\).\(D\).\(E\),\(div.2\)排名\(31\),加上\(div.1\)排名\(64\). 主要是 ...

随机推荐

  1. JS学习笔记 - 面向对象 - 选项卡 (普通选项卡改写)

    选项卡3 <script> window.onload=function () { new TabSwitch('div1'); }; function TabSwitch(id) // ...

  2. asp.net获取客户真实ip非代理ip:

    public string GetUserIP()   {       string _userIP;       if(Request.ServerVariables["HTTP_VIA& ...

  3. vuex概念总结及简单使用实例

    原文 简书原文:https://www.jianshu.com/p/0546983f5997 大纲 1.什么是Vuex 2.什么是“状态管理模式”? 3.什么情况下应该使用 Vuex? 4.Vuex和 ...

  4. 【SPOJ 694】Distinct Substrings (更直接的求法)

    [链接]h在这里写链接 [题意] 接上一篇文章 [题解] 一个字符串所有不同的子串的个数=∑(len-sa[i]-height[i]) [错的次数] 0 [反思] 在这了写反思 [代码] #inclu ...

  5. 各个RFC

    RFC:Request For Comments(RFC),是一系列以编号排定的文件.文件收集了有关互联网相关信息,以及UNIX和互联网社区的软件文件.目前RFC文件是由Internet Societ ...

  6. 使用github pages创建博客

      参考:http://wenku.baidu.com/link?url=hi0nlkIp17HnQQpCkUr3KacZOOVGMOYKYbWzjX_HKJZNZpiRxfGPLuwvUydOVxe ...

  7. AE内置Command控件使用

    樱木 原文 AE内置Command控件使用 直接使用AE内置的Command控件来完成功能 1.拉框放大 /// <summary> /// 放大 /// </summary> ...

  8. icvPrecalculate

    /* *icvPrecalculate *作用:计算特征值,并排序 *详细来说也就是依据训练样本信息和haar特征信息,在函数内部引用icvGetTrainingDataCallback来 *分批计算 ...

  9. object.create(null) 和 {}创建对象的区别

    原文 简书原文:https://www.jianshu.com/p/43ce4d7d6151 创建对象的方法 如果要创建一个空的对象,可以使用如下的三种方法 var obj1 = {}; var ob ...

  10. 【48.51%】【poj 1611】The Suspects

    Time Limit: 1000MS Memory Limit: 20000K Total Submissions: 34447 Accepted: 16711 Description Severe ...