QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#135609#6632. Minimize MedianShGWA 2ms5652kbC++171.7kb2023-08-05 19:35:302023-08-05 19:35:31

Judging History

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

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-08-05 19:35:31]
  • 评测
  • 测评结果:WA
  • 用时:2ms
  • 内存:5652kb
  • [2023-08-05 19:35:30]
  • 提交

answer

#include <bits/stdc++.h>

using namespace std;
#define IOS ios::sync_with_stdio(false);cin.tie(nullptr);cout.tie(nullptr)
#define rep(a, b, c) for(int (a)=(b);(a)<=(c);(a)++)
#define per(a, b, c) for(int (a)=(b);(a)>=(c);(a)--)
#define mset(var, val) memset(var,val,sizeof(var))
#define ll long long
#define int ll
#define fi first
#define se second
#define no "NO\n"
#define yes "YES\n"
#define Alice cout<<"Alice\n"
#define Bob cout<<"Bob\n"
#define pb push_back
#define endl "\n"
#define pii pair<int,int>
#define pll pair<ll,ll>

#define dbg(x...) do{cout<<#x<<" -> ";err(x);}while (0)

const int N = 1e6 + 5;
const int inf = 1e18;

int a[N],dp[N<<1];
int n,m,k;

bool check(int x){
    int sum=0;
    if(x==0){
        rep(i,1,(n+1)/2){
            if(a[i]>x)
                sum+=dp[a[i]+1];
        }
    }else{
        rep(i,1,(n+1)/2){
            if(a[i]>x)
                sum+=dp[(a[i]+x-1)/x];
        }
    }
    if(sum<=k)
        return true;
    return false;
}

void solve() {
    cin>>n>>m>>k;
    rep(i,1,n)
        cin>>a[i];
    rep(i,1,m)
        cin>>dp[i];
    dp[1]=0;
    dp[m+1]=dp[m+2]=inf;
    for(int i=2;i<=m*2;i++){
        for(int j=1;j*i<=m*2;j++){
            dp[i*j]=min(dp[i*j],dp[i]+dp[j]);
        }
    }
    sort(a+1,a+1+n);
    per(i,2*m-1,1){
        dp[i]=min(dp[i],dp[i+1]);
    }
    int l=0,r=a[(n+1)/2],ans=r;
    while(l<=r){
        int mid=(l+r)>>1;
        if(check(mid)){
            ans=mid;
            r=mid-1;
        }else{
            l=mid+1;
        }
    }
    cout<<ans<<endl;
}

signed main() {
    IOS;
    int T = 1;
    cin >> T;
    while (T--) {
        solve();
    }
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Wrong Answer
time: 2ms
memory: 5652kb

input:

3
3 5 0
2 5 2
3 2 4 6 13
3 5 3
2 5 3
3 2 4 6 13
3 5 6
2 5 2
3 2 4 6 13

output:

0
0
0

result:

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