我是靠谱客的博主 会撒娇大叔,这篇文章主要介绍Codeforces Round #339 (Div. 2) A. Link/Cut Tree,现在分享给大家,希望可以做个参考。


A. Link/Cut Tree
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

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 lr 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!

Input

The first line of the input contains three space-separated integers lr and k (1 ≤ l ≤ r ≤ 10182 ≤ k ≤ 109).

Output

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).

Sample test(s)
input
1 10 2
output
1 2 4 8 
input
2 4 5
output
-1
Note

Note to the first sample: numbers 20 = 121 = 222 = 423 = 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 ≤ 10182 ≤ 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内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(54)

评论列表共有 0 条评论

立即
投稿
返回
顶部