P1948 [USACO08JAN] Telephone Lines S

2024-03-10 16:20

本文主要是介绍P1948 [USACO08JAN] Telephone Lines S,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Here

典中之典!!

解题思路

  • 可选k条边代价为0
  • 如何决策?

 1.

  • 将到当前位置选择了几条代价为0的边放入状态,即dis[u][cnt],Node(u,cnt,dis)
  • 若当前状态选的边数小于k,则可以进行决策,是否选择当前边,
  • 若选,则cnt+1,dis+0,否则cnt,Math.max(dis,w_{u->v})
  • 若当前状态选的边数等于k,则只能cnt,Math.max(dis,w_{u->v})

2.

  • 考虑分层图,建k层
  • (实际上就是将上一种方法中多一维记录cnt来区别状态),改为用点的标号区分)
  • 对于每条边,ii+1层连一条相同但代价为0的边
  • 同层连代价为w的边
  • 最终输出第k层的dis[n]
for(int i=1;i<=m;++i){int x=read(),y=read(),w=read();for(int j=0;j<=k;++j){Lian(x+j*n,y+j*n,w);Lian(y+j*n,x+j*n,w);if(j==k)continue;Lian(x+j*n,y+(j+1)*n,0);Lian(y+j*n,x+(j+1)*n,0);}}

3. 

  • 由于代价具有单调性(代价低的,花费更高代价一定也行)
  • 二分答案
  • 对于每条边的边权有小到大排序去重 ,将边权视为答案进行check
  • check时,对大于当前所选答案的边,视作代价为1的边,小于的视作代价为0
  • 判断最终dis[n]\leq k,即为可能解,接着往小进行尝试
  • 否则,往大进行尝试
//二分答案
import java.io.*;
import java.math.BigInteger;
import java.util.Arrays;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Objects;
import java.util.PriorityQueue;
import java.util.Stack;
import java.util.StringTokenizer;//implements Runnable
public class Main{static long md=(long)20020219;static long Linf=Long.MAX_VALUE/2;static int inf=Integer.MAX_VALUE/2;static int M=10000;static int N=1000;static int n=0;static int m=0;static int k=0;static class Edge{int fr,to,val,nxt;public Edge(int u,int v,int w) {fr=u;to=v;val=w;}}static Edge[] e=new Edge[2*M+1];static int[] head=new int[N+1];static int cnt=0;static void addEdge(int fr,int to,int val) {cnt++;e[cnt]=new Edge(fr, to, val);e[cnt].nxt=head[fr];head[fr]=cnt;}staticclass Node{int x;int y;public Node(int u,int v) {x=u;y=v;}}static boolean Dij(int s,int lim) {int[] dis=new int[N+1];Arrays.fill(dis, inf);boolean[] vis=new boolean[N+1];PriorityQueue<Node> q=new PriorityQueue<Node>((o1,o2)->{return o1.y-o2.y;});q.add(new Node(s, 0));dis[s]=0;while(!q.isEmpty()) {Node now=q.peek();q.poll();int x=now.x;if(vis[x])continue;vis[x]=true;for(int i=head[x];i>0;i=e[i].nxt) {int v=e[i].to;if(vis[v])continue;int w=e[i].val;if(w>lim) {if(dis[x]+1<dis[v]) {dis[v]=dis[x]+1;q.add(new Node(v, dis[v]));}}else {if(dis[x]<dis[v]) {dis[v]=dis[x];q.add(new Node(v, dis[v]));}}}}if(dis[n]<=k)return true;else return false;}public static void main(String[] args) throws Exception{AReader input=new AReader();PrintWriter out = new PrintWriter(new OutputStreamWriter(System.out));	n=input.nextInt();m=input.nextInt();k=input.nextInt();int[] a=new int[m+1];int aa=0;int[] b=new int[m+1];int bb=0;for(int i=1;i<=m;++i) {int u=input.nextInt();int v=input.nextInt();int w=input.nextInt();addEdge(u, v, w);addEdge(v, u, w);aa++;a[aa]=w;}Arrays.sort(a,1,aa+1);for(int i=1;i<=aa;++i) {if(a[i]!=a[i-1]) {bb++;b[bb]=a[i];}}int l=1,r=bb;int ans=-1;while(l<=r) {int mid=(l+r)>>1;if(Dij(1, b[mid])) {ans=b[mid];r=mid-1;}else l=mid+1;}out.print(ans);out.flush();out.close();}
//	public static final void main(String[] args) throws Exception {
//		  new Thread(null, new Main(), "线程名字", 1 << 27).start();
//	}
//		@Override
//		public void run() {
//			try {
//				//原本main函数的内容
//				solve();
//
//			} catch (Exception e) {
//			}
//		}
//	static 
//	class Node{
//		int x;
//		int y;
//		public Node(int u,int v) {
//			x=u;
//			y=v;
//		}
//		@Override
//	    public boolean equals(Object o) {
//	        if (this == o) return true;
//	        if (o == null || getClass() != o.getClass()) return false;
//	        Node may = (Node) o;
//	        return x == may.x && y==may.y;
//	    }
//
//	    @Override
//	    public int hashCode() {
//	        return Objects.hash(x, y);
//	    }
//	}staticclass AReader{ BufferedReader bf;StringTokenizer st;BufferedWriter bw;public AReader(){bf=new BufferedReader(new InputStreamReader(System.in));st=new StringTokenizer("");bw=new BufferedWriter(new OutputStreamWriter(System.out));}public String nextLine() throws IOException{return bf.readLine();}public String next() throws IOException{while(!st.hasMoreTokens()){st=new StringTokenizer(bf.readLine());}return st.nextToken();}public char nextChar() throws IOException{//确定下一个token只有一个字符的时候再用return next().charAt(0);}public int nextInt() throws IOException{return Integer.parseInt(next());}public long nextLong() throws IOException{return Long.parseLong(next());}public double nextDouble() throws IOException{return Double.parseDouble(next());}public float nextFloat() throws IOException{return Float.parseFloat(next());}public byte nextByte() throws IOException{return Byte.parseByte(next());}public short nextShort() throws IOException{return Short.parseShort(next());}public BigInteger nextBigInteger() throws IOException{return new BigInteger(next());}public void println() throws IOException {bw.newLine();}public void println(int[] arr) throws IOException{for (int value : arr) {bw.write(value + " ");}println();}public void println(int l, int r, int[] arr) throws IOException{for (int i = l; i <= r; i ++) {bw.write(arr[i] + " ");}println();}public void println(int a) throws IOException{bw.write(String.valueOf(a));bw.newLine();}public void print(int a) throws IOException{bw.write(String.valueOf(a));}public void println(String a) throws IOException{bw.write(a);bw.newLine();}public void print(String a) throws IOException{bw.write(a);}public void println(long a) throws IOException{bw.write(String.valueOf(a));bw.newLine();}public void print(long a) throws IOException{bw.write(String.valueOf(a));}public void println(double a) throws IOException{bw.write(String.valueOf(a));bw.newLine();}public void print(double a) throws IOException{bw.write(String.valueOf(a));}public void print(char a) throws IOException{bw.write(String.valueOf(a));}public void println(char a) throws IOException{bw.write(String.valueOf(a));bw.newLine();}}}

 

这篇关于P1948 [USACO08JAN] Telephone Lines S的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/794800

相关文章

mysql数据库member中telephone字段被篡改

现在准备查询log日志文件,看下被操作的原因是什么

随机算法 - HNU 13348 Finding Lines

Finding Lines Problem's Link:  http://acm.hnu.cn/online/?action=problem&type=show&id=13348&courseid=0   Mean:  给你平面上1e5个点,让你判断是否可以找到一条直线,使得p%的点都在这条直线上。 analyse: 经典的随机算法题。 每次随机出两个点,

Halcon提取边缘线段lines_gauss 算子

Halcon提取边缘线段lines_gauss 算子 edges_color_sub_pix和edges_sub_pix两个算子使用边缘滤波器进行边缘检测。还有一个常用的算子lines_gauss算子,也可以用于提取边缘线段,它的鲁棒性非常好,提取出的线段类型是亚像素精度的XLD轮廓。其原型如下: lines gauss(Image : Lines : Sigma, Low, High, Li

Codeforces Round #329 (Div. 2) B. Anton and Lines ([好题] 计算直线在区间是否有交点)

题目链接 题意:给出n个条直线,然后在指定的区间(x1,x2)是否有直线的交点存在。 解法:一:闭区间,首先把区间略微调小。 二:计算直线在x1,x2上的交点y坐标,以及直线的id,然后按照y值,id值排序,最后判断第x1,x2左右两边的第i个点是不是同一直线的,如果不是,就存在交点。 #include<bits/stdc++.h>using namespace std;const i

POJ 1269 Intersecting Lines(判断直线相交)

题目地址:POJ 1269 直接套模板就可以了。。。实在不想自己写模板了。。。写的又臭又长。。。。不过这题需要注意的是要先判断是否有直线垂直X轴的情况。 代码如下: #include <iostream>#include <cstdio>#include <string>#include <cstring>#include <stdlib.h>#include <math.h>

Telephone Linse(POJ-3662)

Problem Description Farmer John wants to set up a telephone line at his farm. Unfortunately, the phone company is uncooperative, so he needs to pay for some of the cables required to connect his farm

poj 1269 Intersecting Lines(计算几何:线段相交)

给出两条线段,问对应哪三种情况: 不相交,重合,相交于一点 代码如下: /* ***********************************************Author :yinhuaEmail :yinwoods@163.comFile Name :poj1269.cppCreated Time :2014年12月02日 星期二

VSCode插件Sort Lines

Sort Lines是一款VSCode中的扩展,可以帮助你对所选文本或整个文件中的行进行排序。可以给你按字母大小排序(升序、降序),也可以进行排序+去重。而且还能将所有文本打乱顺序。做短文本分类的训练,清洗数据集的时候,这个工具大有用处。 参考文献 9款超级实用 VSCode 插件,让 Python 编程轻松愉悦_vscodepython插件推荐-CSDN博客 推荐一波VS Code

Thread-5 identical 391 lines

打印日志时出现下面的日志信息: Thread-5 identical 391 lines 中文的大概意思时,有391行完全一样 为什么会出现这样的问题呢 是因为相邻的几行打印内容完全相同,从Android O开始Log的chatty机制,会把中间的重复内容不再打印。而是打印类似如上的 ”identical 391 lines“ ,告知有多少行的日志是一样的,这不是错误,只是减少了重复打印的

《500 Lines or Less》(13)—— A 3D Modeller

原文 作者 原code 我用py3重写的code 3D 建模器 介绍 计算机辅助设计(Computer-aided design, CAD)工具允许我们在2D屏幕上查看和编辑3D对象。为此,CAD工具必须具有3个基本功能: 表示对象:使用一种数据结构保存和表示3D对象。显示: 在屏幕上显示交互:与对象进行交互,例如移动对象。 渲染作为指南 在 3D 建模器中,许多设计决策背后