CodeForces - 552C Vanya and Scales

Vanya has a scales for weighing loads and weights of masses w0, w1, w2, ..., w100 grams where w is some integer not less than 2 (exactly one weight of each nominal value). Vanya wonders whether he can weight an item with mass m using the given weights, if the weights can be put on both pans of the scales. Formally speaking, your task is to determine whether it is possible to place an item of mass m and some weights on the left pan of the scales, and some weights on the right pan of the scales so that the pans of the scales were in balance.


Input

The first line contains two integers w, m (2 ≤ w ≤ 109, 1 ≤ m ≤ 109) — the number defining the masses of the weights and the mass of the item.

Output

Print word 'YES' if the item can be weighted and 'NO' if it cannot.

Examples
Input
3 7
Output
YES
Input
100 99
Output
YES
Input
100 50
Output
NO
Note

Note to the first sample test. One pan can have an item of mass 7 and a weight of mass 3, and the second pan can have two weights of masses 9 and 1, correspondingly. Then 7 + 3 = 9 + 1.

Note to the second sample test. One pan of the scales can have an item of mass 99 and the weight of mass 1, and the second pan can have the weight of mass 100.

Note to the third sample test. It is impossible to measure the weight of the item in the manner described in the input.

ID-OJ:
codeforces-552C

author:
Caution_X

DATE of submission:
20,191,031

Tags:
Analog

description modelling:
Given two numbers m, w, a current balance, and a plurality of weights, masses, w ^ 0, w ^ 1, w ^ 2, w ^ 3 ...... w ^ n.
And asked whether the object through a plurality of weights such that the mass m of the balance balance

Major Steps to Solve IT:
(. 1) is converted into the number of m-ary w, p [i] hex w stored right to left position of the i-th size
(2) if any i satisfies p [i] <= 1 then it must be balanced so that the balance (left m, corresponding to the right weight to w ary ^ 1 i w)
(. 3) to the p [i]> 1 the number it is determined whether converted to p [i] <= 1 && p [i + 1] <= 1, such as w-ary bit i is the w-1, and i + 1-bit is 0
then it can be written as p [ i] = - 1, p [ i + 1] = 1, is not finally determined for all p [i] <= 1 to (p [i] Description w ^ i -1 heavy weights and body mass m on the same side)

Represents warnings:
each weight only once

AC code:

#include<bits/stdc++.h>
using namespace std;
int p[105];
int main()
{
    int w,m;
    cin>>w>>m;
    int id=1;
    while(m) {
        p[id++]=m%w;
        m/=w;
    }
    if(id>100) {
        cout<<"NO"<<endl;
        return 0;
    }
    for(int i=1;i<id;i++) {
        if(p[i]>=w) {
            p[i+1]++;
            p[i]-=w;
        }
        if(p[i]<=1)    continue;
        else if(p[i]==w-1) {
            p[i]=0;
            p[i+1]++;
        }
        else {
            cout<<"NO"<<endl;
            return 0;
        }
    }
    cout<<"YES"<<endl;
    return 0;
}

 

Guess you like

Origin www.cnblogs.com/cautx/p/11774352.html