codeforces 871A Maximum splitting

网友投稿 258 2022-09-02

codeforces 871A Maximum splitting

​​ You are given several queries. In the i-th query you are given a single positive integer ni. You are to represent ni as a sum of maximum possible number of composite summands and print this maximum number, or print -1, if there are no such splittings.

An integer greater than 1 is composite, if it is not prime, i.e. if it has positive divisors not equal to 1 and the integer itself.

Input The first line contains single integer q (1 ≤ q ≤ 105) — the number of queries.

q lines follow. The (i + 1)-th line contains single integer ni (1 ≤ ni ≤ 109) — the i-th query.

Output For each query print the maximum possible number of summands in a valid splitting to composite summands, or -1, if there are no such splittings.

Examples Input 1 12 Output 3 Input 2 6 8 Output 1 2 Input 3 1 2 3 Output -1 -1 -1 Note 12 = 4 + 4 + 4 = 4 + 8 = 6 + 6 = 12, but the first splitting has the maximum possible number of summands.

8 = 4 + 4, 6 can’t be split into several composite summands.

1, 2, 3 are less than any composite number, so they do not have valid splittings.

分类讨论一下 按照/4的余数来讨论

…1的情况那么可以用一个9减去 然后剩下的一定是4的倍数

…2的情况可以减去6 然后就是4的倍数了

…3的情况减去6+9然后是4的倍数了之所以要凑4的倍数就是贪心的想法啊

4是最小的符合要求的数

#includeint n;int main(){// freopen("cf.in","r",stdin); scanf("%d",&n); for (int i=1;i<=n;++i){ int ans=0;int tmp=0;scanf("%d",&tmp); if (tmp%4==3) { ans+=2;if (tmp<15) { printf("-1\n");continue; }tmp-=15;ans+=tmp/4;printf("%d\n",ans);continue; } if (tmp%4==2){ ans+=1;if (tmp<6){ printf("-1\n");continue; } tmp-=6;ans+=tmp/4;printf("%d\n",ans);continue; } if (tmp%4==1){ ans+=1;if (tmp<9) { printf("-1\n");continue; } tmp-=9;ans+=tmp/4;printf("%d\n",ans);continue; } if (tmp%4==0) { printf("%d\n",tmp/4);continue; } printf("-1\n"); } return 0;}

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:《这!就是街舞》燃力十足!绿源如何借势实现营销“炸场”?
下一篇:codeforces 872aSearch for Pretty Integers
相关文章

 发表评论

暂时没有评论,来抢沙发吧~