QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#198042#6130. Plants vs. ZombiesHarryJWA 0ms3688kbC++231.3kb2023-10-03 00:01:332023-10-03 00:01:34

Judging History

你现在查看的是最新测评结果

  • [2023-10-03 00:01:34]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3688kb
  • [2023-10-03 00:01:33]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;

typedef long long LL;
typedef pair<int,int> P;
const LL mod=998244353;
const int INF=0x3f3f3f3f;
const int N=1e5+10;
LL a[N],b[N];
LL n,m;

int check(LL x)
{
    // for(int i=1;i<=n;i++) b[i]=(x+a[i]-1)/a[i];
    
    // LL cnt=0;
    // LL last=0;
    
    // for(int i=1;i<=n;i++)
    // {
    //     if(b[i]>0) last=i;
        
    //     cnt++;
    //     b[i]--;
        
    //     if(b[i]>0)
    //     {
    //         cnt+=b[i]*2;
    //         b[i+1]-=b[i];
    //     }
    // }
    
    // cnt-=(n-last);
    
    // if(cnt<=m) return 1;
    // return 0;
    
    LL cnt=0;
    LL need=0;
    
	for(int i=1; i<=n; ++i)
	{
		LL need2=(x+a[i]-1)/a[i];
		need2-=need+1;
		if(need2<=0) i!=n?(--m):(!need2/*还需一步到n*/&&--m), need2=0;
		else cnt+=need2*2+1;
		//if(m<0) return 0;
		need=need2;
	}
	
	
	if(cnt<=m) return 1;
    return 0;
}

void solve()
{
    cin>>n>>m;
    
    for(int i=1;i<=n;i++) cin>>a[i];
    
    LL l=0,r=1e17;
    
    while(l<r)
    {
        LL mid=(l+r+1)/2;
        
        if(check(mid)) l=mid;
        else r=mid-1;
    }
    
    cout<<l<<endl;
}

int main()
{
    ios::sync_with_stdio(0);
    cin.tie(0); cout.tie(0);
    
    int tt; cin>>tt;
    
    while(tt--) solve();
    
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 3688kb

input:

2
4 8
3 2 6 6
3 9
10 10 1

output:

0
0

result:

wrong answer 1st numbers differ - expected: '6', found: '0'