(点击此处查看原题)

题意分析

已知 n , p , w, d ,求x , y, z的值 ,他们的关系为:

x + y + z = n

x * w + y * d = p

思维法

当 y < w 的时候,我们最多通过1e5次枚举确定答案

而当 y >= w 的时候,平局所得分为:y * d = (y-w)*d + w*d ,可以看作平局的局数为 y - w ,多出的w*d贡献给 (w*d)/w = d 局胜局,所以胜局为 x + d ,说明此时用x+y局胜局和平局得到的分数可以由 x + d + y - w 局胜局和平局得到,同时此时的胜局+平局次数更少,所以枚举 y > w 的情况是没有意义的,完全可以通过枚举 y = {0 ~ w - 1} 得到答案

综上所述,我们只需要在 [0,w) 范围内枚举y即可得到答案

#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<algorithm>
#include<cmath>
#include<cstring>
#include<queue>
#include<string>
#include<fstream>
#include<vector>
#include<stack>
#include <map>
#include <iomanip> #define bug cout << "**********" << endl
#define show(x, y) cout<<"["<<x<<","<<y<<"] "
#define LOCAL = 1;
using namespace std;
typedef long long ll;
const int inf = 0x3f3f3f3f;
const int mod = 1e9 + ;
const int Max = 5e3 + ; ll n, sum;
ll win, draw; int main()
{
#ifdef LOCAL
// freopen("input.txt", "r", stdin);
// freopen("output.txt", "w", stdout);
#endif
scanf("%lld%lld%lld%lld", &n, &sum, &win, &draw);
for(ll y = ; y < win ; y ++)
{
if ((sum - y * draw) % win)
continue;
ll x = (sum - y * draw) / win;
if(x + y <= n && x >= )
{
printf("%lld %lld %lld\n",x,y,n-x-y);
return ;
}
}
printf("-1\n");
return ;
}

扩展欧几里得法

扩展欧几里得算法才是这个题目的正解,从式子:x * w + y * d = p 中,可以看出其正好对应扩展欧几里得公式:x * a + y * b = gcd(a,b) ,借助扩展欧几里得公式,我们可以得到x * w + y * d = p的一组解,具体步骤如下:

1)用扩展欧几里得公式求:

x0 * w + y0 * d = gcd(w,d)

得到了x0,y0

2)将上述式子两边同乘 k =  p / gcd(w,d) ,【必须保证 (p % gcd(w,d)) == 0 ,否则无解】,得到:

x0 * k * w + y0 * k * d = gcd(w,d) * k

x0 * k * w + y0 * k * d = p

这样, x = x0*k , y = y0*k 就是式子  x * w + y * d = p 的一组解,

3)由于x,y,z需要满足

  x + y + z = n

因此,我们通过调整x,y,使得上式得以满足,为此,我们需要让x + y 的值尽量小;注意到 w > d ,说明当 y 取最小值的时候,x + y 取最小值,如果此时 x + y <= n ,说明有解,否则无解

又根据 x * w + y * d = p ,我们得知 y 每次变化:+- w/gcd(w,d) ,所以y 的最小值即为

y = ( y0 * k ) % (w/gcd(w,d))

4)最后,根据得到的y,求出x 和 z 的值,随后,判断 x + y 是否小于 n ,满足即输出 x , y , z,否则说明无解

(注意求 y 的时候进行取模操作,不然会爆 long long )

#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<algorithm>
#include<cmath>
#include<cstring>
#include<queue>
#include<string>
#include<fstream>
#include<vector>
#include<stack>
#include <map>
#include <iomanip> #define bug cout << "**********" << endl
#define show(x, y) cout<<"["<<x<<","<<y<<"] "
#define LOCAL = 1;
using namespace std;
typedef long long ll;
const int inf = 0x3f3f3f3f;
const int Max = 5e3 + ; ll n, sum;
ll win, draw; ll exgcd(ll a, ll b, ll &x, ll &y)
{
if (b == )
{
x = ;
y = ;
return a;
}
ll r = exgcd(b, a % b, x, y);
ll t = x;
x = y;
y = t - (a / b) * y;
return r;
} int main()
{
#ifdef LOCAL
// freopen("input.txt", "r", stdin);
// freopen("output.txt", "w", stdout);
#endif
scanf("%lld%lld%lld%lld", &n, &sum, &win, &draw);
ll x, y;
ll gcd = exgcd(win, draw, x, y); if ((sum % gcd) == )
{
ll mod = win / gcd;
y = ((y%mod)*(sum/gcd%mod)%mod + mod)%mod;
x = (sum - y * draw) / win;
if(x >= && y >= && x + y <= n)
{
printf("%lld %lld %lld\n",x,y,n-x-y);
return ;
}
}
printf("-1\n");
return ;
}

最新文章

  1. R爬虫知识点
  2. Python - 动手写个ORM
  3. C# 标准查询表达式
  4. uva 11294
  5. zoj 3757 Alice and Bob and Cue Sports 月赛A 模拟
  6. High performance web site
  7. 解决mysql不能远程登录的问题
  8. ASP.NET5 静态文件
  9. django框架介绍
  10. Bestcoder Round#45
  11. 终于下决心在cnblogs上安家了,^_^
  12. Struts2学习笔记(十一)——文件上传
  13. Docker进阶之三:Docker应用场景
  14. 在python3中安装mysql扩展,No module named &#39;ConfigParser&#39;
  15. 饮冰三年-人工智能-Python-20 Python线程、进程、线程
  16. cp2102 驱动 win7x64 -2018
  17. java 期末考试复习
  18. 《R数据挖掘入门》彩色插图(第9章)
  19. 利用TensorFlow实现多元逻辑回归
  20. 第二章 IOC + AOP 底层原理

热门文章

  1. 使用python开发ansible自定义模块的简单案例
  2. c++ 实现等待5s
  3. CF1197B
  4. 动态规划——区间DP,计数类DP,数位统计DP
  5. OpenFOAM 中的边界条件(一)【转载】
  6. Airbnb架构要点分享——阅读心得
  7. 写给新手看的 MyBatis 入门
  8. SQLyog Enterprise Trial 试用期问题
  9. Flutter移动电商实战 --(25)列表页_使用Provide控制子类-1
  10. [转]用代码访问 Https