比赛 hhh 评测结果 AAAAAAAAAA
题目名称 韩信点兵 最终得分 100
用户昵称 梦那边的美好ET 运行时间 0.048 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2018-07-31 10:06:10
显示代码纯文本
#include<iostream>  
#include<cstdio>
#include<cmath>
#include<cstring>  
#include<algorithm>  
using namespace std; 
long long ans=0,l,n,up=1,a[11],b[11];
int main()
{ 
    freopen("HanXin.in","r",stdin);        
    freopen("HanXin.out","w",stdout);      
	cin>>l>>n;
	for(int i=1;i<=n;i++)cin>>a[i]>>b[i];
	for(int i=1;i<=n;i++)
	{
		
	    int p=0;
		while(p==0)
		{
		    if((l-ans)%a[i]==b[i])
			{
			    p=1;
				up*=a[i];
			}
			else
			{
			    ans+=up;
				if(ans>=l)
				{
					p=2;
					break;
				}
			}
			if(p==2)break;
		}
	}
	if(ans>=l)
	{
	    cout<<"-1";
		return 0;
	}
	cout<<ans;
    return 0;  
}