Programmer Rostislav got seriously interested in the Link/Cut Tree data structure, which is based on Splay trees. Specifically, he is now studying the expose procedure.
Unfortunately, Rostislav is unable to understand the definition of this procedure, so he decided to ask programmer Serezha to help him. Serezha agreed to help if Rostislav solves a simple task (and if he doesn't, then why would he need Splay trees anyway?)
Given integers l, r and k, you need to print all powers of number k within range from l to r inclusive. However, Rostislav doesn't want to spent time doing this, as he got interested in playing a network game called Agar with Gleb. Help him!
The first line of the input contains three space-separated integers l, r and k (1 ≤ l ≤ r ≤ 1018, 2 ≤ k ≤ 109).
Print all powers of number k, that lie within range from l to r in the increasing order. If there are no such numbers, print "-1" (without the quotes).
1 10 2
1 2 4 8
2 4 5
-1
Note to the first sample: numbers 20 = 1, 21 = 2, 22 = 4, 23 = 8 lie within the specified range. The number 24 = 16 is greater then 10, thus it shouldn't be printed.
题意:
k的i次方 大于等于l,小于等于r。
从大到小 输出 满足条件 k的i次方
没有输出 -1
比赛时写错了
看到 1 ≤ l ≤ r ≤ 1018, 2 ≤ k ≤ 109
想到用long long ,结果 long long 不行 改为无符号的
。。。。。。 还是错了
怎么比完赛才想到怎么做呢??
#include
#include
#include
#include
#include
using namespace std; int main() { long long l,r,k,sum=1,kk; int i,j,flag=1; scanf("%I64d%I64d%I64d",&l,&r,&k); for(i=0;; i++) { if(sum>=l)printf("%I64d ",sum),flag=0; if(r/k
最后
以上就是会撒娇大叔最近收集整理的关于Codeforces Round #339 (Div. 2) A. Link/Cut Tree的全部内容,更多相关Codeforces内容请搜索靠谱客的其他文章。
发表评论 取消回复