HDU 1792-A New Change Problem(互質數的最大不能表示數)

Rocky0429發表於2015-08-21

題目地址:HDU 1792
題意:兩個互質的數A,B且A*x+B*y(x>=0,y>=0)求最大不能表示的數,和不能表示的數的個數。
思路:最大不能表示的數是A*B-A-B,個數是(A-1)*(B-1)/2。詳細推導

#include <stdio.h>
#include <math.h>
#include <string.h>
#include <stdlib.h>
#include <iostream>
#include <sstream>
#include <algorithm>
#include <set>
#include <queue>
#include <stack>
#include <map>
#include <bitset>
#pragma comment(linker, "/STACK:102400000,102400000")
using namespace std;
typedef long long  LL;
const int inf=0x3f3f3f3f;
const double pi= acos(-1.0);
const double esp=1e-7;
int main()
{
    int a,b;
    while(~scanf("%d %d",&a,&b)){
        printf("%d %d\n",a*b-a-b,(a-1)*(b-1)/2);
    }
    return 0;
}

相關文章