- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图从Codechef论坛寻求帮助,但无法获得任何重大帮助,因此我在这里发布了我的问题!
问题是从7月开始对Codechef进行长期挑战。
问题链接:https://www.codechef.com/JULY20B/problems/DRCHEF
代码链接:https://www.codechef.com/viewsolution/35869168
我的代码__
#include <iostream>
#include <set>
#include <iterator>
#include <stdio.h>
using namespace std ;
// it returns highest value present in multiset within the range [x,2x]
long int range_search (multiset <long int> S, long int X)
{
multiset<long int>::iterator it1, it2;
it1 = S.lower_bound(X);
it2 = S.upper_bound(2 * X);
long int ans;
if (it1 != it2)
{
--it2;
ans = *(it2);
}
else
{
ans = -1;
}
return ans;
}
// driver function
int main () {
int T;
cin>>T;
for (int k =0; k<T; k++){
int N ;
long int x ;
scanf("%d",&N) ;
scanf ("%ld",&x) ;
multiset<long int> s ; // storing country populations in multiset
multiset<long int>::iterator itr, itr1, itr2 ;
long int days =0;
long int val ;
long int temp ;
short int test = 0;
for (int i=0; i<N; i++){
scanf ("%ld",&val) ;
s.insert (val) ;
} // inserting population of N countries
/* multiset <long int> :: iterator itrrr;
cout << "\nThe multiset gquiz1 is : ";
for (itrrr = s.begin(); itrrr != s.end(); ++itrrr)
{
cout << '\t' << *itrrr;
}
cout << endl;
*/
while (test == 0){
// <0> if set is empty
if (s.size() == 0){ // <0.1>
test = 1;
break;
}
else { // <0.2>
// <1>
if (days == 0) { // <1.1> if its the first day
itr = s.end () ;
--itr ;
temp = *(itr) ;
if ( (temp - x)*2 > temp ) {
days++ ;
}
else {
s.erase(temp);
s.insert( (temp -x)*2 ) ;
days++ ;
}
test = 0 ;
continue ;
} //end of <1.1>
else { // <1.2> if it isnt first day we will do rangesearch [x,2x]
long int Z = range_search(s,x) ;
itr = s.end();
--itr;
temp = *(itr) ;
// <2>
if (Z != -1) { // <2.1> if some value found using rangesearch
if (Z == temp) { // when Z is equal to most populated country's value
days = days + s.size() ;
test = 0 ;
break;
}
else {
x = Z;
s.erase (Z) ;
days++ ;
test = 0 ;
continue;
}
} // end of <2.1>
else { // <2.2>
x = x*2;
if ( (temp - x)*2 > temp){
s.insert(temp) ;
}
else {
s.erase(itr) ;
s.insert ( (temp - x)*2) ;
}
days++ ;
test = 0 ;
continue ;
} // end of <2.2>
} // end of <1.2>
} // end of <0.2>
} // end of while loop
cout<<days<<endl ;
} // end of testcase loop
return 0;
}
注意:-我不在乎我的逻辑是否在边缘情况或其他测试情况下给了我错误的答案,我特别专注于修复我的代码以仅执行我的逻辑,并且我需要帮助来修复我的代码错误,因为我没有得到正确的答案我的逻辑给我的答案在纸上(意味着我做了一些代码失误,可能是溢出或其他原因)
2.B.a) we will search for a element in multiset within the range [x,2x] inclusively
if a value found then we will use as many cures as the value of element returned
i.e size of population found within range [x,2x] let that population be P,
thus X = P (updating X for next day) and we remove that element from multiset
(because this country will be country cured on that day) and we increment the
total days required by one.
2.B.b) else (when no such value in multiset exits in range [x,2x] ) then again we will
go to cure the country with largest population present. X will be updated to 2*X
(because today we can use 2*X cures to cure the most populated country), thus
X = X*2, we also update the population of that country after doubling at end of
the day.
注意:同样,在执行所有这些任务之前,我还要检查我的多集是否为空。
最佳答案
You don't have to write a huge and lengthy code
The logic is very simple for this problem
- You just have sort the input array and check the nearest close population number than x
- Then you should count the days by supplying vaccines which increases your daily output
- The root part of this problem is to figure out supplying vaccines with 2X increase in cases daily
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define f(i,u,w) for(ll i=u;i<w;i++)
#define AI(u,w) ll u[w]; f(i,0,w)cin>>u[i]
#define T ll t; cin>>t; while(t--)
int main(){
/* freopen("input.txt", "r" , stdin);
freopen("output.txt", "w" , stdout); */
ios_base::sync_with_stdio(false);
cin.tie(0);
T{
ll n,x,ans=0;
cin>>n>>x;
AI(a,n);
sort(a,a+n);
ll b=lower_bound(a,a+n,x)-a;
ans=ans+b;
if(b!=0){
if(2*a[b-1]>x)
x=2*a[b-1];
}
f(i,b,n){
if(x>=a[i]){
ans++;
x=a[i]*2;
}
else{
ll c=(a[i]+1)/2;
if(x>=c){
ans+=2;
x=a[i]*2;
}
else{
ans++;
while(x<c){
x=x<<1;
ans++;
}
ans++;
x=a[i]*2;
}
}
}
cout<<ans<<"\n";
}
}
关于c++ - 需要帮助来修复我的代码以执行特定的逻辑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63312634/
我有这个问题: 我们声称对 float 使用相等测试是不安全的,因为算术运算会引入舍入错误,这意味着两个应该相等的数字实际上并不相等。 对于这个程序,您应该选择一个数字 N,并编写一个程序来显示 1
为什么这个脚本的输出是 5 而不是 8 ? 我认为 -- 意味着 -1 两次。 var x = 0; var y = 10; while ( x
我现在可以从 cmd 窗口中执行的 FFmpeg 过程中读取最后一行。 使用脚本主机模型对象引用此源。 Private Sub Command1_Click() Dim oExec
使用 vlookup,当匹配发生时,我想从匹配发生的同一行显示工作表 2 中 C 列的值。我想出的公式从 C 列表 2 中获取值,但它从公式粘贴在表 3 上的行中获取,而不是从匹配发生的位置获取。 这
我在破译 WCF 跟踪文件时遇到了问题,我希望有人能帮助我确定管道中的哪个位置发生了延迟。 “Processing Message XX”的跟踪如下所示,在事件边界和传输到“Process Actio
我有四个表,USER、CONTACT、CONACT_TYPE 和 USER_CONTACT USER_CONTACT 存储用户具有填充虚拟数据的表的所有联系人如下 用户表 USER_ID(int)|
以下有什么作用? public static function find_by_sql($sql="") { global $database; $result_set = $data
我正在解决 JavaBat 问题并且对我的逻辑感到困惑。 这是任务: Given a day of the week encoded as 0=Sun, 1=Mon, 2=Tue, ...6=Sat,
我正在研究一些 Scala 代码,发现这种方法让我感到困惑。在匹配语句中,sublist@ 是什么?构造?它包含什么样的值(value)?当我打印它时,它与 tail 没有区别,但如果我用尾部替换它,
我正在使用以下代码自行缩放图像。代码很好,图像缩放也没有问题。 UIImage *originImg = img; size = newSize; if (originImg.size.width >
Instruments 无法在我的 iPad 和 iPhone 上启动。两者都已正确配置,我可以毫无问题地从 xcode 调试它们上的代码,但 Instruments 无法启动。 我听到的只是一声嘟嘟
我想用 iPhone 的 NSRegularExpression 类解析此文本: Uploaded652.81 GB 用于摘录上传和652.81文本。 最佳答案 虽然我确实认为 xml 解析器更适合解
我找到了 solution在 Stackoverflow 上,根据过滤器显示 HTML“li”元素(请参阅附件)。本质上基于 HTML 元素中定义的 css 类,它填充您可以从中选择的下拉列表。 我想
这是一个简单的问题,但我是在 SQL 2005 中形成 XML 的新手,但是用于形成如下所示表中的 XML 的最佳 FOR XML SQL 语句是什么? Column1 Column2 -
我在 www.enigmafest.com 有一个网站!您可以尝试打开它!我面临的问题是,在预加载器完成后,主页会出现,但其他菜单仍然需要很长时间才能加载,而且声音也至少需要 5 分钟! :( 我怎样
好吧,我正在尝试用 Haskell 来理解 IO,我想我应该编写一个处理网页的简短小应用程序来完成它。我被绊倒的代码片段是(向 bobince 表示歉意,但公平地说,我并不想在这里解析 HTML,只是
如何使用背景页面来突出显示网站上的某个关键字,无论网站是什么(谷歌浏览器扩展)?没有弹出窗口或任何东西,它只是在某人正在查看的网站上编辑关键字。我以前见过这样的,就是不明白怎么做!谢谢你的帮助。 最佳
我是 Javascript 新手,需要一些帮助。 先看图片: . 积分预测器应用程序。 基本上当用户通过单选按钮选择获胜团队时它应该在积分栏中为获胜队添加 10 分,并且并根据得分高的球队自动对表格进
这是我的情况 - 我要发送一份时事通讯,我试图做的是,当用户单击电子邮件中的链接时,它会重定向到我的网页,然后会弹出一个灯箱,显示视频。我无法在页面加载时触发灯箱,因为您可以在查看灯箱之前转到同一页面
我有这个代码。 ¿Cuanto es ? Ir 我想获取用户输入的“验证码”值。我尝试这个但行不通。有什么帮助吗? var campo = d
我是一名优秀的程序员,十分优秀!