Alyona and copybooks

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 fora 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 copybooksk that n + k is divisible by4? 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 copybooksk that n + k is divisible by4.

Example
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 have4 copybooks which she can split between the subjects equally.

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

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

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

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

int main()
{
    long long int min,a,b,c,n,m;
    scanf("%lld%lld%lld%lld",&m,&a,&b,&c);
    n = m % 4;
    if(n == 0)
        min = 0;
    if(n == 1)
    {
        min = 3*a;
        if(min > c)
            min = c;
        if(min > a + b)
            min = a + b;
        if(min > (2 * b) + c)
            min = (2 * b) + c;
        if(min > (2 * c) + a)
            min = (2 * c) + a;
        if(min > (3 * c) + b)
            min = (3 * c) + b;
    }
    if(n == 2)
    {
        min = 2 * a;
        if(min > b)
            min = b;
        if(min > 2 * c)
            min = 2 * c;
        if(min > (3 * c) + a)
            min = (3 * c) + a;
    }
    if(n == 3)
    {
        min = a;
        if(min > 3 * c)
            min = 3 * c;
        if(min > b +c)
            min = b + c;
    }
    printf("%lld",min);
    return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值