#308 (div.2) C. Vanya and Scales

1.题目描述:点击打开链接

2.解题思路:本题可以事先进行一下简单的数学推导解决。实际上要满足的等式就是如下的式子:

a0*w^0+a1*w^1+a2*w^2+...+an*w^n=m

上式中,所有的ai均应该是{0,1,-1}中其中一个数,这样推导之后,大致的解题思路便浮出水面了。就是不断地以w取模,然后m/=w,看余数是否满足条件即可。不过这里还要多深入思考一点,首先不难发现,如果w≤3,那么必然满足题意;当w>3时,由于模运算不会出现余数为-1的情况,可以是w-1,所以这时m除以w后要加上1,表示再多减一次w,这样w-1就变为了-1了,只要发现有余数不满足的情况,就输出NO。

3.代码:

#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
#include<algorithm>
#include<string>
#include<sstream>
#include<set>
#include<vector>
#include<stack>
#include<map>
#include<queue>
#include<deque>
#include<cstdlib>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<ctime>
#include<functional>
using namespace std;

typedef long long ll;
typedef unsigned long long ull;

#define me(s) memset(s,0,sizeof(s))
#define For(i,n) for(int i=0;i<(n);i++)
#define pb push_back
#define sz size
#define clr clear
#define F(a,b) for(int i=a;b;i++)

int main()
{
    int x, y;
	while(cin >> x >> y)
    {
        if (x <= 3)//此时一定满足题意
        {
            printf("YES\n");
            goto x1;
        }
        while(y > 0)
        {
            int z = y % x;
            if (z <= 1)//余数为0,1
                y /= x;
            else if (z == x - 1)//相当于余数是-1
                y = y / x + 1;//除以x后要再加1
            else//余数不满足条件,直接输出NO
            {
                printf("NO\n");
                goto x1;
            }
        }
        printf("YES\n");
        x1:;
    }
	return 0;
}



版权声明:本文为博主原创文章,未经博主允许不得转载。

时间: 2024-11-12 22:29:13

#308 (div.2) C. Vanya and Scales的相关文章

暴力/进制转换 Codeforces Round #308 (Div. 2) C. Vanya and Scales

题目传送门 1 /* 2 题意:问是否能用质量为w^0,w^1,...,w^100的砝码各1个称出重量m,砝码放左边或在右边 3 暴力/进制转换:假设可以称出,用w进制表示,每一位是0,1,w-1.w-1表示砝码与物品放在一起,模拟判断每位是否ok 4 详细解释:http://blog.csdn.net/u011265346/article/details/46556361 5 总结:比赛时压根没往进制去想,连样例也不知道是怎么回事..中文不行啊:( 6 */ 7 #include <cstdi

水题 Codeforces Round #308 (Div. 2) A. Vanya and Table

题目传送门 1 /* 2 水题:读懂题目就能做 3 */ 4 #include <cstdio> 5 #include <iostream> 6 #include <algorithm> 7 #include <cstring> 8 #include <cmath> 9 #include <vector> 10 #include <string> 11 #include <queue> 12 #include

数学 Codeforces Round #308 (Div. 2) B. Vanya and Books

题目传送门 1 /* 2 水题:求总数字个数,开long long竟然莫名其妙WA了几次,也没改啥又对了:) 3 */ 4 #include <cstdio> 5 #include <iostream> 6 #include <algorithm> 7 #include <cstring> 8 #include <cmath> 9 #include <vector> 10 #include <string> 11 #inc

#308 (div.2) D. Vanya and Triangles

1.题目描述:点击打开链接 2.解题思路:本题是一道简单的计算几何题,统计一个图中有多少个三角形,由于给的时间很宽,完全可以用O(N^3)的算法来解决,判断是否构成三角形只需要用向量来判断三点是否共线即可. 3.代码: #define _CRT_SECURE_NO_WARNINGS #include<iostream> #include<algorithm> #include<string> #include<sstream> #include<set

#308 (div.2) B. Vanya and Books

1.题目描述:点击打开链接 2.解题思路:本题要求统计数位的个数,简单的试验一下发现有如下规律:一个n位数的个数有9*(10^n)个,因此所有n位数的数位是n*9*(10^n)个,因此可以利用两个循环变量base,k来计算,其中base表示n位数的总个数,k表示每一个n位数的数位有k位,循环条件是n-base>0,这样即可完成统计. 3.代码: #define _CRT_SECURE_NO_WARNINGS #include<iostream> #include<algorithm

#308 (div.2) A. Vanya and Table

1.题目描述:点击打开链接 2.解题思路:本题是一道简单的模拟题,每次扫描一个输入的长方形,然后将内部所有点都+1,最终统计数组所有元素的和即可. 3.代码: #define _CRT_SECURE_NO_WARNINGS #include<iostream> #include<algorithm> #include<string> #include<sstream> #include<set> #include<vector> #i

Codeforces Round #308 (Div. 2)

A. Vanya and Table Vanya has a table consisting of 100 rows, each row contains 100 cells. The rows are numbered by integers from 1 to 100 from bottom to top, the columns are numbered from 1 to 100 from left to right. In this table, Vanya chose n rect

CodeForces 552C Vanya and Scales

Vanya and Scales Time Limit:1000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u Submit Status Practice CodeForces 552C Description Vanya has a scales for weighing loads and weights of masses w0, w1, w2, ..., w100 grams where w is some

codeforces C. Vanya and Scales

C. 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 usi