[exgcd] Jzoj P5855 吃蛋糕

news/2024/10/15 13:26:12/

Description

Beny 想要用蛋糕填饱肚子。Beny 一共想吃体积为 c 的蛋糕,他发现有两种蛋糕可以吃,一种体积为 a,一种体积为 b,但两种蛋糕各有特色。Beny 想知道他一共有多少种不同吃法, 使得他恰好可以填饱肚子。
 

Input

第一行一个 t
接下来 t 行,每行三个正整数 a,b,c
 

Output

对于每个 a,b,c,输出一个整数表示有几种不同吃法
 

Sample Input

样例输入 1
3
2 3 4
3 4 24
3 7 11样例输入 2
4
12 13 1003
56 44 792
4616 5364 836482148
3836501 7035978 77151863500136

Sample Output

样例输出 1
13
0样例输出 2
6
2
135
3

Data Constraint

对于 30%的数据 t<=10,a,b,c<=100
对于 60%的数据 t<=100,a,b,c<=10^9
对于 100%的数据 t<=10000,a,b,c<=10^14

 

 

题解

  • 其实就是求ax+by=c的非负整数解
  • 显然exgcd
  • 先判断其是否有解,设a'=a/d,b'=b/d,c'=c/d
  • 之后模拟求出所有解个数,即x+=b,y-=a
  • 所以答案为y/a+1

代码

 1 #include <cstdio>
 2 #include <iostream>
 3 #include <algorithm>
 4 #include <cmath>
 5 #include <cstring>
 6 #include <queue>
 7 #include <vector>
 8 #include <string>
 9 #include <memory.h>
10 using namespace std;
11 long long a,b,c,ans;
12 long long exgcd(long long a,long long b,long long &x,long long &y)
13 {
14     if (!b)
15     {
16         x=1,y=0;return a;
17     }
18     long long e=exgcd(b,a%b,x,y),k=x;
19     x=y;y=k-a/b*y;
20     return e;
21 }
22 void doit(long long a,long long b,long long c)
23 {
24     long long x=0,y=0,d=exgcd(a,b,x,y);
25     if (c%d)
26     {
27         printf("0\n");
28         return;
29     }
30     long long p=b/d;
31     x=((c/d%p*x)%p+p)%p,y=(c-a*x)/b;
32     ans=y>=0?y/(a/d)+1:0;
33     printf("%lld\n",ans);
34     return;
35 }
36 int main()
37 {
38     freopen("cake.in","r",stdin);
39     freopen("cake.out","w",stdout);
40     int t; cin>>t;
41     while (t--)
42     {
43         scanf("%lld%lld%lld",&a,&b,&c);
44         doit(a,b,c);
45     }
46     return 0;
47 }

 

转载于:https://www.cnblogs.com/Comfortable/p/9649074.html


http://www.ppmy.cn/news/374936.html

相关文章

leetcode 5855. 找出数组中的第 K 大整数(C++、java、python)

给你一个字符串数组 nums 和一个整数 k 。nums 中的每个字符串都表示一个不含前导零的整数。 返回 nums 中表示第 k 大整数的字符串。 注意&#xff1a;重复的数字在统计时会视为不同元素考虑。例如&#xff0c;如果 nums 是 ["1","2","2"]&am…

二分+贪心——HDU 5855

题目链接&#xff1a; http://acm.split.hdu.edu.cn/showproblem.php?pid5855参考博客&#xff1a; http://blog.csdn.net/queuelovestack/article/details/52222085分析&#xff1a;给出N个工厂&#xff0c;每个工厂给出建造时间和费用&#xff0c;给出M个商店&#xff0c;…

HDU5855 Less Time, More profit(最大权闭合子图)

题目 Source http://acm.hdu.edu.cn/showproblem.php?pid5855 Description The city planners plan to build N plants in the city which has M shops. Each shop needs products from some plants to make profit of proi units. Building ith plant needs investment of pa…

HDU 5855 Less Time, More profit 【最大流-最大权闭合子图】

作为多校签到题的存在…. 题意&#xff1a; n个工厂&#xff0c;m个商店 每个工厂有建造时间 ti &#xff0c;花费 payi 每个商店和k个工厂有关&#xff0c;如果这k个工厂都建造了&#xff0c;那么能获利 proi 问你求收益&#xff08;∑pro−∑pay&#xff09;≥L时&#…

HDU-5855 Less Time, More profit(最大权闭合图+二分)

题意&#xff1a; 有n个工厂和m个商店&#xff0c;商店已经存在&#xff0c;而工厂需要建造且需要一定的花费和一定的时间&#xff0c;工厂的建造可以同时建&#xff0c;如果建造了指定的工厂&#xff0c;相应的商店会获得一定的收入。给定一个L&#xff0c;求最少需要花费多长…

HDU 5855-最大权闭合图(-最小割应用)

题意就是一个裸的最大权闭合图: M个商店&#xff0c;N个工厂&#xff0c;每个商店获利的条件是建设了指定的k个工厂。求总获利不小于L&#xff0c;工厂建设的时间最大值最小是多少。 工厂到汇点建一条边pay[i]&#xff0c;源点到商店建一条边pro[i]&#xff0c;商店到需要的工…

HDU 5855 Less Time, More profit(最大权闭合子图)

Description m家商店&#xff0c;n家工厂&#xff0c;第i家商店赢利vi元的前提是建立对应的ki家工厂&#xff0c;建立第i家工厂需要花费wi&#xff0c;用时ti&#xff0c;工厂的建立可以同时进行&#xff0c;问总赢利不小于L所需的最小时间 Input 第一行一整数T表示用例组数…

HDU5855(最大权闭合图构图技巧+裸的最大流)

题意&#xff1a;给了n个工厂,m个商店,每个商店只有在要求的工厂都建好后才能获得利润&#xff0c;而建一个工厂需要花费和时间,现在问你能获得利润至少为l的最短时间是多少,在这个时间下的最大利润是多少; 题解&#xff1a;因为每一个商店盈利都必须有一些工厂修好。这就是一…