F - Link/Cut Tree CodeForces - 614A(水题)

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!

Input The first line of the input contains three space-separated

integers l, r and k (1?≤?l?≤?r?≤?1018, 2?≤?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).

Examples
Input
1 10 2
Output
1 2 4 8
Input
2 4 5
Output
-1

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

Sponsor

思路

  • 分析:直接暴力求解就行,但是要注意当我们迭代道1e9的时候下一次迭代就有可能越界,所以我们进行判读避免这一点,一定要通过做出除法来判断是否会越界,代码如下
        if(e / last < k)        //不能用 last > 1e9 这种情况来结束循环,因为这个时候如果 k>1e9 就炸了

代码

#include<iostream>
#include<cstdio>
#include<cmath>
#include<algorithm>
#include<map>
using namespace std;

#define ll long long
ll s, e, k;

int main() {
    /* freopen("A.txt", "r", stdin); */
    /* freopen("Ans.txt", "w", stdout); */
    scanf("%lld %lld %lld", &s, &e, &k);
    int flag = 0;
    for(ll last = 1; last <= e; last *= k)
    {
        if(last >= s)
        {
            flag = 1;
            printf("%lld ", last);
        }
        if(e / last < k)        //不能用 last > 1e9 这种情况来结束循环,因为这个时候如果 k>1e9 就炸了
            break;
    }
    if(! flag)
        printf("-1");
    printf("\n");

    return 0;
}

原文地址:https://www.cnblogs.com/lql-nyist/p/12687076.html

时间: 2024-11-09 05:17:08

F - Link/Cut Tree CodeForces - 614A(水题)的相关文章

Link/Cut Tree CodeForces - 614A 暴力+爆 long long 处理

题意: 给你一个区间[l,r],让你从小到大输出k^x,设y=k^x,要保证y在区间[l,r]中 题解: 就算k是最小的2也不需要枚举多少次就到long long的极限了,所以暴力没商量,根本不会TLE 然后就是爆long long处理,比如r特别大,当k^x=<r但是k^(x+1)就爆long long了,这个要注意一下 代码: 1 #include<stdio.h> 2 #include<string.h> 3 #include<iostream> 4 #in

Codeforces Round #339 (Div. 2) A. Link/Cut Tree

A. Link/Cut Tree 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

bzoj2049 [Sdoi2008]Cave 洞穴勘测 link cut tree入门

link cut tree入门题 首先说明本人只会写自底向上的数组版(都说了不写指针.不写自顶向下QAQ……) 突然发现link cut tree不难写... 说一下各个函数作用: bool isroot(int x):判断x是否为所在重链(splay)的根 void down(int x):下放各种标记 void rotate(int x):在x所在重链(splay)中将x旋转到fa[x]的位置上 void splay(int x):在x坐在重链(splay)中将x旋转到根 void acce

link cut tree 入门

鉴于最近写bzoj还有51nod都出现写不动的现象,决定学习一波厉害的算法/数据结构. link cut tree:研究popoqqq那个神ppt. bzoj1036:维护access操作就可以了. #include<cstdio> #include<cstring> #include<cctype> #include<algorithm> #include<queue> using namespace std; #define rep(i,s,

Link Cut Tree学习笔记

从这里开始 动态树问题和Link Cut Tree 一些定义 access操作 换根操作 link和cut操作 时间复杂度证明 Link Cut Tree维护链上信息 Link Cut Tree维护子树信息 小结 动态树问题和Link Cut Tree 动态树问题是一类要求维护一个有根树森林,支持对树的分割, 合并等操作的问题. Link Cut Tree(林可砍树?简称LCT)是解决这一类问题的一种数据结构. 一些无聊的定义 Link Cut Tree维护的是动态森林中每棵树的任意链剖分. P

[模板]Link Cut Tree

传送门 Description 给定n个点以及每个点的权值,要你处理接下来的m个操作.操作有4种.操作从0到3编号.点从1到n编号. 0:后接两个整数(x,y),代表询问从x到y的路径上的点的权值的xor和.保证x到y是联通的. 1:后接两个整数(x,y),代表连接x到y,若x到y已经联通则无需连接. 2:后接两个整数(x,y),代表删除边(x,y),不保证边(x,y)存在. 3:后接两个整数(x,y),代表将点x上的权值变成y. Solution \(Link\ Cut\ Tree\)模板题

AC日记——【模板】Link Cut Tree 洛谷 P3690

[模板]Link Cut Tree 思路: LCT模板: 代码: #include <bits/stdc++.h> using namespace std; #define maxn 300005 int n,m,val[maxn]; int top,ch[maxn][2],f[maxn],xr[maxn],q[maxn],rev[maxn]; inline void in(int &now) { int if_z=1;now=0; char Cget=getchar(); while

脑洞大开加偏执人格——可持久化treap版的Link Cut Tree

一直没有点动态树这个科技树,因为听说只能用Splay,用Treap的话多一个log.有一天脑洞大开,想到也许Treap也能从底向上Split.仔细思考了一下,发现翻转标记不好写,再仔细思考了一下,发现还是可以写的,只需要实时交换答案二元组里的两棵树,最后在吧提出来的访问节点放回去就行了.本着只学一种平衡树的想法,脑洞大开加偏执人格的开始写可持久化Treap版的Link Cut Tree... 写了才发现,常数硕大啊!!!代码超长啊!!!因为merge是从上到下,split从下到上,pushdow

LuoguP3690 【模板】Link Cut Tree (动态树) LCT模板

P3690 [模板]Link Cut Tree (动态树) 题目背景 动态树 题目描述 给定n个点以及每个点的权值,要你处理接下来的m个操作.操作有4种.操作从0到3编号.点从1到n编号. 0:后接两个整数(x,y),代表询问从x到y的路径上的点的权值的xor和.保证x到y是联通的. 1:后接两个整数(x,y),代表连接x到y,若x到y已经联通则无需连接. 2:后接两个整数(x,y),代表删除边(x,y),不保证边(x,y)存在. 3:后接两个整数(x,y),代表将点x上的权值变成y. 输入输出