Codeforces Round #464 (Div. 2) B. Hamster Farm 水题

B. Hamster Farm
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Dima has a hamsters farm. Soon N hamsters will grow up on it and Dima will sell them in a city nearby.

Hamsters should be transported in boxes. If some box is not completely full, the hamsters in it are bored, that's why each box should be completely full with hamsters.

Dima can buy boxes at a factory. The factory produces boxes of K kinds, boxes of the i-th kind can contain in themselves aihamsters. Dima can buy any amount of boxes, but he should buy boxes of only one kind to get a wholesale discount.

Of course, Dima would buy boxes in such a way that each box can be completely filled with hamsters and transported to the city. If there is no place for some hamsters, Dima will leave them on the farm.

Find out how many boxes and of which type should Dima buy to transport maximum number of hamsters.

Input

The first line contains two integers N and K (0 ≤ N ≤ 10181 ≤ K ≤ 105) — the number of hamsters that will grow up on Dima's farm and the number of types of boxes that the factory produces.

The second line contains K integers a1a2, ..., aK (1 ≤ ai ≤ 1018 for all i) — the capacities of boxes.

Output

Output two integers: the type of boxes that Dima should buy and the number of boxes of that type Dima should buy. Types of boxes are numbered from 1 to K in the order they are given in input.

If there are many correct answers, output any of them.

Examples
input
Copy
19 3
5 4 10
output
2 4
input
Copy
28 3
5 6 30
output
1 5

题意:给定一堆仓鼠的数量以及盒子的种类数,只可以购买一种盒子但数量不限。要求买到的盒子必须装满仓鼠且使装载仓鼠的总数尽可能大,输出盒子的种类以及购买盒子的个数。

注意仓鼠数为0以及仓鼠装不满一个箱子的特殊情况

代码如下:

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const ll inf = 1e18;
ll n,k;

int main()
{
    while (~scanf("%I64d %I64d",&n,&k)){
        ll pos=1,minv=inf,a,amt=0;

        for (int i=1;i<=k;i++){
            scanf("%I64d",&a);
            if (a>n)
                continue;
            ll yu=n%a;
            ll box=n/a;
            if (minv>yu&&box>=(ll)1){
                pos=i;
                minv=yu;
                amt=box;
            }
        }
        if (n==0){
            printf("1 0\n");
            continue;
        }
        printf("%I64d %I64d\n",pos,amt);
    }
    return 0;
}


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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值