首页 > JZOJ #4722 跳楼机 (最短路模型的完美转化)

JZOJ #4722 跳楼机 (最短路模型的完美转化)

题目描述:

给出$h,x,y,z$,求在$h$以内,$x,y,z$可以凑出多少个不同的数。$(1leq{h}leq{10^{18}},1leq{x,y,z}leq{10^5})$

解题思路:

直接做显然不好做。我们考虑取$n$个$y$和$m$个$z$,然后再加上$x,2*x,3*xcdots$,显然地,只要对于每种取法,$(ny+mz)\%x$的值不同的话,就不会有重复。所以我们先求出$d_{i}=c$表示通过选$y$和$z$使得和模$x$等于$i$的最小和$c$。然后答案就是$sum_{i=0}^{x-1}(lfloorfrac{h-d_{i}}{x} floor+1)$。至于怎么求$d_{i}$,可以发现$d_{(i+y)\%x}=d_{i}+y$,$d_{(i+z)\%x}=d_{i}+z$,明显的最短路模型。

代码:

 1 #include 
 2 #include 
 3 #include 
 4 #include 
 5 #define i64 long long
 6 using namespace std;
 7 
 8 const int N = 1e5 + 10;
 9 const i64 inf = 1e18 + 1;
10 int x, y, z, inq[N];
11 i64 h, ans, d[N];
12 
13 queue <int> q;
14 
15 void spfa() {
16     for (int i = 0; i < x; i ++) d[i] = inf;
17     d[1] = 1 % x;
18     q.push(1);
19     inq[1] = 1;
20     while (!q.empty()) {
21         int i = q.front(); q.pop();
22         if (d[i] + y < d[(i + y) % x]) {
23             d[(i + y) % x] = d[i] + y;
24             if (!inq[(i + y) % x]) {
25                 inq[(i + y) % x] = 1;
26                 q.push((i + y) % x);
27             }
28         }
29         if (d[i] + z < d[(i + z) % x]) {
30             d[(i + z) % x] = d[i] + z;
31             if (!inq[(i + z) % x]) {
32                 inq[(i + z) % x] = 1;
33                 q.push((i + z) % x);
34             }
35         }
36         inq[i] = 0;
37     }
38 }
39 
40 int main() {
41     scanf("%lld", &h);
42     scanf("%d %d %d", &x, &y, &z);
43     spfa();
44     for (int i = 0; i < x; i ++) if (h > d[i]) ans += (h - d[i]) / x + 1;
45     printf("%lld", ans);
46     return 0;
47 }

 

转载于:https://www.cnblogs.com/awner/p/5796948.html

更多相关:

  •         Apache POI是一个开源的利用Java读写Excel,WORD等微软OLE2组件文档的项目。        我的需求是对Excel的数据进行导入或将数据以Excel的形式导出。先上简单的测试代码:package com.xing.studyTest.poi;import java.io.FileInputSt...

  • 要取得[a,b)的随机整数,使用(rand() % (b-a))+ a; 要取得[a,b]的随机整数,使用(rand() % (b-a+1))+ a; 要取得(a,b]的随机整数,使用(rand() % (b-a))+ a + 1; 通用公式:a + rand() % n;其中的a是起始值,n是整数的范围。 要取得a到b之间的...

  • 利用本征图像分解(Intrinsic Image Decomposition)算法,将图像分解为shading(illumination) image 和 reflectance(albedo) image,计算图像的reflectance image。 Reflectance Image 是指在变化的光照条件下能够维持不变的图像部分...

  • 题目:面试题39. 数组中出现次数超过一半的数字 数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字。 你可以假设数组是非空的,并且给定的数组总是存在多数元素。 示例 1: 输入: [1, 2, 3, 2, 2, 2, 5, 4, 2] 输出: 2 限制: 1 <= 数组长度 <= 50000 解题: cl...

  • 题目:二叉搜索树的后序遍历序列 输入一个整数数组,判断该数组是不是某二叉搜索树的后序遍历结果。如果是则返回 true,否则返回 false。假设输入的数组的任意两个数字都互不相同。 参考以下这颗二叉搜索树:      5     /    2   6   /  1   3示例 1: 输入: [1,6,3,2,5] 输出...

  • #include #include #include #include #include #include #include

  • 题目:表示数值的字符串 请实现一个函数用来判断字符串是否表示数值(包括整数和小数)。例如,字符串"+100"、"5e2"、"-123"、"3.1416"、"0123"及"-1E-16"都表示数值,但"12e"、"1a3.14"、"1.2.3"、"+-5"及"12e+5.4"都不是。 解题: 数值错误的形式有多种多样,但是正确的...

  • 加法伺候  //超过20位数值相加---------------------------------------- function bigNumAdd(a, b) {if (!(typeof a === "string" && typeof b === "string")) return console.log("传入参数必...

  • 业务场景: 从中文字句中匹配出指定的中文子字符串 .这样的情况我在工作中遇到非常多, 特梳理总结如下. 难点: 处理GBK和utf8之类的字符编码, 同时正则匹配Pattern中包含汉字,要汉字正常发挥作用,必须非常谨慎.推荐最好统一为utf8编码,如果不是这种最优情况,也有酌情处理. 往往一个具有普适性的正则表达式会简化程...

  • 简单record 一下 #include // 'struct sockaddr_in' #include #include // 'struct ifreq' and 'struct if_nameindex' #include #inc...