- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
这是问题的链接
https://www.hackerrank.com/challenges/equal
我读了它的社论,无法理解。如果您没有在hackerrank上注册任何帐户,那么您肯定不会看到它的社论,所以这里有一些社论。
This is equivalent to saying, christy can take away the chocolates of one coworker by 1, 2 or 5 while keeping others' chocolate untouched.
Let's consider decreasing a coworker's chocolate as an operation. To minimize the number of operations, we should try to make the number of chocolates of every coworker equal to the minimum one in the group(min). We have to decrease the number of chocolates the ith person A[i] by (A[i] - min). Let this value be x.
This can be done in k operations.
k = x/5 +(x%5)/2 + (x%5)%2
Let f(min) be sum of operations performed over all coworkers to reduce each of their chocolates to min. However, sometimes f(min) might not always give the correct answer. It can also be a case when
f(min) > f(min-1)
f(min) < f(min-5)
as f(min-5) takes N operations more than f(min) where N is the number of coworkers. Therefore, if
A = {min,min-1,min-2,min-3,min-4}
then f(A) <= f(min) < f(min-5)
最佳答案
考虑案例 A = [1,5,5]
正如社论所说,直觉上认为改变是最优的A
到 [1,1,1] 用 4(2 减 2)次运算,但最好用 3 次(1 减 1, 2 减 5)次运算将其改为 [0,0,0]。
因此如果 min = minimum element in array
,然后将所有元素更改为 min
可能不是最优的。
你不明白的部分是为了迎合这种情况,我们知道min
可能不是最佳的 min-x
也许更好,但有多大 x
?嗯,是 4 .社论说如果我们知道x
最多为 4,我们可以简单地暴力破解 min
, min-1
... min-4
不用想太多,看看哪个是最小的。
x <= 4 的推理(不是证明!)
如果 x >= 5,那么您必须至少对所有元素使用额外的 N 类型 3(减 5)操作,这绝对不值得。
基本上不是操作类型的问题,是因为你需要使用对所有元素进行相同的操作 ,这样做之后,问题并没有减少,元素之间的相对差异仍然相同,而您的目标是将相对差异设为0,您花费了电话 一无所获。
换句话说,如果 x >= 5,那么 x-5 一定是一个更优的目标选择,实际上 x%5 一定是最好的目标。
(以下是 TL;DR 部分:第 2 版)如果您对证明不感兴趣,请跳到最后一部分
在写原方案的过程中,我怀疑 x <= 2 事实上,我已经尝试在 HackerRank 上提交一个代码,它只检查 f(min-x) where x <= 2
的最小值。 ,并获得了 ACed。
更正式地说,我声称
If 5> (z-min)%5 >= 3 and (z-min')%5==0, then F(min')< F(min) where min'=min-x for x<=2, F(k) = min # of operation for element z to become k
F()
,它与问题中的 f()
含义不同)
(z-min)%5 = 1 or 2
,那么它至少需要
(z-min)/5 + 1
操作,而
(z-min')%5 == 0 needs (z-min')/5 = (z-min)/5 + 1
操作,意味着
F(min') = F(min)
(z-min)%5 == 3 or 4
,那么它至少需要
(z-min)/5 + 2
操作,而
(z-min')%5 == 0 needs (z-min')/5 = (z-min)/5 + 1
操作,意味着
F(min') < F(min) (or F(min') = F(min)+1)
If 5> (z-min)%5 >= 3 and (z-min')%5==0, then F(min')< F(min) where min'=min-x
x
的范围
(z-min)%5 >= 3 and (z-min')%5 == 0
,
(z-min')%5 = (z-min+x)%5 = ((z-min)%5 + x%5)%5 == 0
x >= 3
,然后
(z-min)%5
永远不能 >= 3 才能使
((z-min)%5 + x%5)%5 == 0
5> (z-min)%5 >= 3 and (z-min')%5==0
If 5> (z-min)%5 >= 3 and (z-min')%5==0, then F(min')< F(min) where min'=min-x for x<=2
min' = min-2
, 而每 10 将节省 1 个操作以获得
min'
.所以我们只需要添加更多的 10,直到它消除(补偿)2 的“浪费”:
#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
int T, n, a[10005], m = 1<<28;
int f(int m){
m = max(0, m);
int cnt = 0;
for(int i=0; i<n;i++){
cnt += (a[i]-m)/5 + (a[i]-m)%5/2 + (a[i]-m)%5%2;
}
return cnt;
}
int main() {
cin >> T;
while(T--){
m = 1<<28;
cin >> n;
for(int i=0; i<n;i++) cin >> a[i], m = min(m,a[i]);
cout << min(min(f(m), f(m-1)),f(m-2)) << endl;
}
return 0;
}
m = max(0, m);
!
min-x
必须至少为 0,但是等等,我上面的证明没有说明
min-x
的范围。 !它确实可以是负面的!
1
3
0 3 3
min-x
= 0,所以它给出 4 作为输出,但答案应该是 3
m = max(0, m);
行时,一切终于正确(我认为......) ,它允许
min-x
得到否定并给出 3 作为正确的输出,当然新代码也得到 ACed ......
关于algorithm - 无法理解算法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37797031/
我通过 spring ioc 编写了一些 Rest 应用程序。但我无法解决这个问题。这是我的异常(exception): org.springframework.beans.factory.BeanC
我对 TestNG、Spring 框架等完全陌生,我正在尝试使用注释 @Value通过 @Configuration 访问配置文件注释。 我在这里想要实现的目标是让控制台从配置文件中写出“hi”,通过
为此工作了几个小时。我完全被难住了。 这是 CS113 的实验室。 如果用户在程序(二进制计算器)结束时选择继续,我们需要使用 goto 语句来到达程序的顶部。 但是,我们还需要释放所有分配的内存。
我正在尝试使用 ffmpeg 库构建一个小的 C 程序。但是我什至无法使用 avformat_open_input() 打开音频文件设置检查错误代码的函数后,我得到以下输出: Error code:
使用 Spring Initializer 创建一个简单的 Spring boot。我只在可用选项下选择 DevTools。 创建项目后,无需对其进行任何更改,即可正常运行程序。 现在,当我尝试在项目
所以我只是在 Mac OS X 中通过 brew 安装了 qt。但是它无法链接它。当我尝试运行 brew link qt 或 brew link --overwrite qt 我得到以下信息: ton
我在提交和 pull 时遇到了问题:在提交的 IDE 中,我看到: warning not all local changes may be shown due to an error: unable
我跑 man gcc | grep "-L" 我明白了 Usage: grep [OPTION]... PATTERN [FILE]... Try `grep --help' for more inf
我有一段代码,旨在接收任何 URL 并将其从网络上撕下来。到目前为止,它运行良好,直到有人给了它这个 URL: http://www.aspensurgical.com/static/images/a
在过去的 5 个小时里,我一直在尝试在我的服务器上设置 WireGuard,但在完成所有设置后,我无法 ping IP 或解析域。 下面是服务器配置 [Interface] Address = 10.
我正在尝试在 GitLab 中 fork 我的一个私有(private)项目,但是当我按下 fork 按钮时,我会收到以下信息: No available namespaces to fork the
我这里遇到了一些问题。我是 node.js 和 Rest API 的新手,但我正在尝试自学。我制作了 REST API,使用 MongoDB 与我的数据库进行通信,我使用 Postman 来测试我的路
下面的代码在控制台中给出以下消息: Uncaught DOMException: Failed to execute 'appendChild' on 'Node': The new child el
我正在尝试调用一个新端点来显示数据,我意识到在上一组有效的数据中,它在数据周围用一对额外的“[]”括号进行控制台,我认为这就是问题是,而新端点不会以我使用数据的方式产生它! 这是 NgFor 失败的原
我正在尝试将我的 Symfony2 应用程序部署到我的 Azure Web 应用程序,但遇到了一些麻烦。 推送到远程时,我在终端中收到以下消息 remote: Updating branch 'mas
Minikube已启动并正在运行,没有任何错误,但是我无法 curl IP。我在这里遵循:https://docs.traefik.io/user-guide/kubernetes/,似乎没有提到关闭
每当我尝试docker组成任何项目时,都会出现以下错误。 我尝试过有和没有sudo 我在这台机器上只有这个问题。我可以在Mac和Amazon WorkSpace上运行相同的容器。 (myslabs)
我正在尝试 pip install stanza 并收到此消息: ERROR: No matching distribution found for torch>=1.3.0 (from stanza
DNS 解析看起来不错,但我无法 ping 我的服务。可能是什么原因? 来自集群中的另一个 Pod: $ ping backend PING backend.default.svc.cluster.l
我正在使用Hibernate 4 + Spring MVC 4当我开始 Apache Tomcat Server 8我收到此错误: Error creating bean with name 'wel
我是一名优秀的程序员,十分优秀!