题目大意:

给你n个点,每个点只有一条出路,请问每个点走了k步之后走过的权值和、
权值最小的边的权值。

考场想法:

考试时就先打了个暴力,然后发现一定会形成一个环,所以就想到了可以判环,然后
按照规律求答案,可是这种方法太麻烦了,所以就放弃了。

正解:

可以用倍增,求出每个i的2^j步到达的点(f)、权值和(len)、权值最小值(m),
如下:
f[i][j]=f[f[i][j-1]][j-1];
len[i][j]=len[i][j-1]+len[f[i][j-1]][j-1];
m[i][j]=Min(m[i][j-1],m[f[i][j-1]][j-1]);

代码:

#include<bits/stdc++.h>
using namespace std;
long long k,k1,ans1,ans2,a[36],m[100005][36],len[100005][36],n,u,f[100005][36];
long long Min(long long x,long long y)
{
if(x<y) return x;
return y;
}
int main()
{
scanf("%lld%lld",&n,&k);
for(int j=1;j<=35;j++)
{
for(int i=0;i<n;i++)
{
m[i][j]=1e10;
}
}
for(int i=0;i<n;i++) scanf("%lld",&f[i][0]);
for(int i=0;i<n;i++)
{
scanf("%lld",&m[i][0]);
len[i][0]=m[i][0];
}
a[0]=1;
for(int j=1;j<=35;j++)
{
a[j]=a[j-1]*2;
for(int i=0;i<n;i++)
{
f[i][j]=f[f[i][j-1]][j-1];
len[i][j]=len[i][j-1]+len[f[i][j-1]][j-1];
m[i][j]=Min(m[i][j-1],m[f[i][j-1]][j-1]);
}
}
for(int i=0;i<n;i++)
{
u=i;
ans1=0;
ans2=1e10;
k1=k;
for(int j=35;j>=0;j--)
{
if(k1<a[j]) continue;
k1=k1-a[j];
ans1=ans1+len[u][j];
ans2=Min(ans2,m[u][j]);
u=f[u][j];
}
printf("%lld %lld\n",ans1,ans2);
}
return 0;
}

100026. 【NOIP2017提高A组模拟7.7】图的更多相关文章

  1. [JZOJ 100026] [NOIP2017提高A组模拟7.7] 图 解题报告 (倍增)

    题目链接: http://172.16.0.132/senior/#main/show/100026 题目: 有一个$n$个点$n$条边的有向图,每条边为$<i,f(i),w(i)>$,意 ...

  2. JZOJ 100029. 【NOIP2017提高A组模拟7.8】陪审团

    100029. [NOIP2017提高A组模拟7.8]陪审团 Time Limits: 1000 ms  Memory Limits: 131072 KB  Detailed Limits   Got ...

  3. JZOJ 5328. 【NOIP2017提高A组模拟8.22】世界线

    5328. [NOIP2017提高A组模拟8.22]世界线 (File IO): input:worldline.in output:worldline.out Time Limits: 1500 m ...

  4. JZOJ 5329. 【NOIP2017提高A组模拟8.22】时间机器

    5329. [NOIP2017提高A组模拟8.22]时间机器 (File IO): input:machine.in output:machine.out Time Limits: 2000 ms M ...

  5. JZOJ 5307. 【NOIP2017提高A组模拟8.18】偷窃 (Standard IO)

    5307. [NOIP2017提高A组模拟8.18]偷窃 (Standard IO) Time Limits: 1000 ms Memory Limits: 262144 KB Description ...

  6. JZOJ 5286. 【NOIP2017提高A组模拟8.16】花花的森林 (Standard IO)

    5286. [NOIP2017提高A组模拟8.16]花花的森林 (Standard IO) Time Limits: 1000 ms Memory Limits: 131072 KB Descript ...

  7. JZOJ 5305. 【NOIP2017提高A组模拟8.18】C (Standard IO)

    5305. [NOIP2017提高A组模拟8.18]C (Standard IO) Time Limits: 1000 ms Memory Limits: 131072 KB Description ...

  8. 【NOIP2017提高A组模拟9.17】信仰是为了虚无之人

    [NOIP2017提高A组模拟9.17]信仰是为了虚无之人 Description Input Output Sample Input 3 3 0 1 1 7 1 1 6 1 3 2 Sample O ...

  9. 【NOIP2017提高A组模拟9.17】猫

    [NOIP2017提高A组模拟9.17]猫 题目 Description 信息组最近猫成灾了! 隔壁物理组也拿猫没办法. 信息组组长只好去请神刀手来帮他们消灭猫.信息组现在共有n 只猫(n 为正整数) ...

  10. 【NOIP2017提高A组模拟9.17】组合数问题

    [NOIP2017提高A组模拟9.17]组合数问题 题目 Description 定义"组合数"S(n,m)代表将n 个不同的元素拆分成m 个非空集合的方案数. 举个例子,将{1,2,3}拆分成2 个 ...

随机推荐

  1. vue项目启动报错问题解决. Module build failed: Error: Node Sass does not yet support your current environment

    导入vue项目后,启动报错,异常如下: 1 error in ./src/pages/home.vue 2 Module build failed: Error: Node Sass does not ...

  2. pytesseract文字识别

    import pytesseract from PIL import Image im=Image.open('image.png') print(pytesseract.image_to_strin ...

  3. pkuseg

    git-url: https://github.com/lancopku/PKUSeg-python pkuseg:一个多领域中文分词工具包 pkuseg简单易用,支持细分领域分词,有效提升了分词准确 ...

  4. Field userService in com.lin.hms.controller.LogController required a bean of type 'org.lin.hms.service.UserService' that could not be found.

    需要一个bean但找不到 解决 我们在controller使用的service没有注入spring容器,那么我们可以在启动类上,加上包扫描注解,让这个bean所在的包能扫描到: @ComponentS ...

  5. Git在使用过程中遇到的一些问题

    git默认对文件中的大小写不敏感. 方案1: 通过配置git来达到识别文件大小写的问题.命令如下: git config core.ignorcecase false 缺点:每个仓库都需要修改. 方案 ...

  6. go设置http代理

    打算把之前python写的程序切换到golang, 结果调试时发现fiddler无法正常捕获go的http请求 需要设置代理才可以正常捕获 const HttpProxyUrl = "htt ...

  7. 使用Wireshark查看HTTPS中TLS握手过程

    通过使用Wireshark抓包分析TLS握手的过程,可以更容易理解和验证TLS协议,本文将先介绍Wireshark解密HTTPS流量的方法,然后分别验证TLS握手过程和TLS会话恢复的过程. 一.使用 ...

  8. baodoumi mybaitplus自增很大问题

    参考: https://blog.csdn.net/u012019209/article/details/124585933 @TableId(type = IdType.AUTO) private ...

  9. 关于python print函数format 格式化

    关于python print函数format 格式化  Your Guide to the Python print() Function https://realpython.com/python- ...

  10. python内置函数range()—对象创建函数

    range()函数 介绍 range()函数实际上表示一个不可变的数字序列类型,通常用于在for循环中指定特定的次数. range()的格式: range(stop) range(start, sto ...