Skip to main content
  1. Posts/

uva 107 The Cat in the Hat

·1 min
Note: This article is available in Chinese only. 本文暂无英文版本。 View original

https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=43 题意:其实就是给了两个式子。。。(N+1)^h=a,N^h=b,a,b已知,然后求关于N的两个式子.。。 思路:数学上这个方程貌似不可解。。? 所以只能枚举一下==。。。注意精度问题把。。。

然后用换底公式求对数的时候要向上取整。

还有b为1的时候是特殊数据。

 1/* ***********************************************
 2Author :111qqz
 3Created Time :2016年01月28日 星期四 16时46分38秒
 4File Name :code/uva/107.cpp
 5************************************************ */
 6
 7#include <cstdio>
 8#include <cstring>
 9#include <iostream>
10#include <algorithm>
11#include <vector>
12#include <queue>
13#include <set>
14#include <map>
15#include <string>
16#include <cmath>
17#include <cstdlib>
18#include <ctime>
19#define fst first
20#define sec second
21#define lson l,m,rt<<1
22#define rson m+1,r,rt<<1|1
23#define ms(a,x) memset(a,x,sizeof(a))
24typedef long long LL;
25#define pi pair < int ,int >
26#define MP make_pair
27
28using namespace std;
29const double eps = 1E-12;
30const int dx4[4]={1,0,0,-1};
31const int dy4[4]={0,-1,1,0};
32const int inf = 0x3f3f3f3f;
33int a,b;
34int main()
35{
36	#ifndef  ONLINE_JUDGE
37	freopen("code/in.txt","r",stdin);
38  #endif
39
40	while (scanf("%d %d",&a,&b)!=EOF)
41	{
42	    if (a==0&&b==0) break;
43	    int n ,h;
44	    int ans1,ans2=0;
45	    //b为1是特殊数据,除数为0了。。。。
46	    if (b==1)
47	    {
48		h = ceil(log(a)/log(2));
49		cout<<h<<" "<<2*a-1<<endl;
50		continue;
51	    }
52
53	    for ( int i = 1 ;  ;i++)
54	    {
55		if (fabs(log(a)*log(i)-log(b)*log(i+1))<eps)
56		{
57		    n = i;
58		    break;
59		}
60	    }
61	     h = (ceil)(log(b)/log(n));   //应该向上取整。。。可以看做一般规律。。换地公式求对数的时候。。想想为什么。
62	  //  cout<<"h:"<<h<<endl;
63	     ans1 = (int)((1-b)/(1-n));
64	     ans2=0;
65	    int curh = 1;
66	    for ( int i = 0 ; i <= h ;i++)
67	    {
68	//	cout<<"curh:"<<curh<<" b:"<<b<<endl;
69		ans2+=curh*b;
70		curh*=(n+1);
71		b/=n;
72	    }
73	   // cout<<ans1<<" "<<ans2<<endl;
74	    printf("%d %d\n",ans1,ans2);
75
76
77	}
78
79  #ifndef ONLINE_JUDGE
80  fclose(stdin);
81  #endif
82    return 0;
83}

Related

uva 846 Steps

·2 mins
https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid;=8&page;=show_problem&problem;=787 题意:从x增加到y,第一步和最后一步步长只能是1,其他步一定可以是上一步减一,和上一步相等,或者上一步步长加一,三种情况,且步长恒为正。问从x到y最少需要的步数。

uva 10025 The ? 1 ? 2 ? ... ? n = k problem

·1 min
https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=966 题意:?1?2?3?4…?n=k,把每个?替换成+或者-,找到最小的n使得式子成立。 题意:这道题最关键的一点是。如果s1=1+2+3+.,x+..+n>=k (所有数取正数),那么一定有s2=1+2+3+..-x+..+n=k

uva 113 Power of Cryptography

·1 min
https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid;=8&page;=show_problem&problem;=49 题意:求p开n次方。保证结果为整数。 思路:p最大10的101次方。。。double最大10的308次方。。因为肯定是整数。。不存在精度问题。。所以可以用douible水过QAQ…

hdoj 5605 || bc #68 div 2 1001 geometry

·1 min
题意:geometry Accepts: 324 Submissions: 622 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others) 问题描述 在平面直角坐标系上有一个点PP, 他的坐标是(x, y)(x,y). 有一条直线y = kx + by=kx+b经过了PP, 且分别交x, yx,y正半轴于A, BA,B. 求|PA| * |PB|∣PA∣∗∣PB∣的最小值. 输入描述 第一行一个TT, 表示数据组数. 接下来TT行每行两个正整数x,yx,y, 表示PP的坐标.

cf 611 B ||codeforces goodbye 2015 B. New Year and Old Property (数学或者数位dp)

http://codeforces.com/contest/611/problem/B 题意:问a到b(1E18),二进制表示中只有一个0的数有多少个。 思路:这么大的数。。。不是有循环节就是math problems. UD:20160318讲道理还有可能是数位dp好不好。。。 我们发现可以很容易得算出1到x的二进制表示中只有一个0 的数有多少个。