比赛 2024暑假C班集训9 评测结果 EEEEEEEEEE
题目名称 机场改建 最终得分 0
用户昵称 dream 运行时间 2.811 s
代码语言 C++ 内存使用 196.47 MiB
提交时间 2024-07-09 08:37:08
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
bool mk[200000005];
int t;
ll n,d;
int judge1(int mid){
    int mn=1000000000;
    for(int i=mid-d;i<=mid+d;i++){
        if(mk[i]){
            mn=min(mn,abs(mid-i));
        }
    }
    if(mn!=1000000000){
        return mn;
    }
    return -2147483648;
}
int main(){
    freopen("airport.in","r",stdin);
    freopen("airport.out","w",stdout);
    cin>>t;
    while(t--){
        ll res=0;
        cin>>n>>d;
        memset(mk,0,sizeof(mk));
        for(int i=1;i<=n;i++){
            ll a;
            cin>>a;
            if(i==1){
                mk[a]=1;
                cout<<0<<" ";
            }
            else{
                int near=judge1(a);
                if(near==-2147483648){
                    mk[a]=1;
                    cout<<"0 ";
                    continue;
                } 
                else{
                    mk[near+d]=1;
                    cout<<near+d-a<<" ";
                }
            }
        }
    }
    return 0;
}