Codeforces Round #381 (Div. 2) A. Alyona and copybooks(模拟)

来源:互联网 发布:js foreach循环 编辑:程序博客网 时间:2024/05/18 01:51

A. Alyona and copybooks
time limit per test1 second
memory limit per test256 megabytes
inputstandard input
outputstandard output
Little girl Alyona is in a shop to buy some copybooks for school. She study four subjects so she wants to have equal number of copybooks for each of the subjects. There are three types of copybook’s packs in the shop: it is possible to buy one copybook for a rubles, a pack of two copybooks for b rubles, and a pack of three copybooks for c rubles. Alyona already has n copybooks.

What is the minimum amount of rubles she should pay to buy such number of copybooks k that n + k is divisible by 4? There are infinitely many packs of any type in the shop. Alyona can buy packs of different type in the same purchase.

Input
The only line contains 4 integers n, a, b, c (1 ≤ n, a, b, c ≤ 109).

Output
Print the minimum amount of rubles she should pay to buy such number of copybooks k that n + k is divisible by 4.

Examples
input
1 1 3 4
output
3
input
6 2 1 1
output
1
input
4 4 4 4
output
0
input
999999999 1000000000 1000000000 1000000000
output
1000000000
Note
In the first example Alyona can buy 3 packs of 1 copybook for 3a = 3 rubles in total. After that she will have 4 copybooks which she can split between the subjects equally.

In the second example Alyuna can buy a pack of 2 copybooks for b = 1 ruble. She will have 8 copybooks in total.

In the third example Alyona can split the copybooks she already has between the 4 subject equally, so she doesn’t need to buy anything.

In the fourth example Alyona should buy one pack of one copybook.

题意:现在有N本字帖,商店卖的有三种规格的字帖,A卢布一本,B卢布两本,C卢布三本,还需要购买K本使得N+K被4整除,找出购买K本的最小花费。

并不是简单的向前补齐0~3个数字就好

代码

#include<stdio.h>#include<iostream>#include<algorithm>#include<string.h>#include<math.h>using namespace std;int main(){    long long int n,a,b,c;    scanf("%I64d%I64d%I64d%I64d",&n,&a,&b,&c);    if(n%4==0)        printf("0\n");    else if(n%4==1)//可以买3printf("%I64d\n",min(a*3,min(a+b,c)));    else if(n%4==2)//可以买2/6printf("%I64d\n",min(a*2,min(b,c*2)));    else if(n%4==3)//可以买1/5/9printf("%I64d\n",min(a,min(b+c,c*3)));    return 0;}
0 0