QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#525151#4423. AMPPZ in the times of diseaseCaptainflyWA 2239ms9412kbC++202.2kb2024-08-20 13:37:212024-08-20 13:37:21

Judging History

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

  • [2024-08-20 13:37:21]
  • 评测
  • 测评结果:WA
  • 用时:2239ms
  • 内存:9412kb
  • [2024-08-20 13:37:21]
  • 提交

answer

#include<bits/stdc++.h>
#include<unordered_map>
using namespace std;
typedef long long ll;
typedef pair<int,int> PII;
typedef pair<char,int> PCI;
typedef pair<string,int> PSI;
typedef pair<int, char> PIC;
#define all(x) x.begin(), x.end()
#define mp make_pair
#define lson rt<<1
#define rson rt<<1|1
typedef array<int,2> pr;
#define ull unsigned long long
const unsigned int mask =  (chrono::steady_clock::now().time_since_epoch().count());
inline int gcd(int a, int b){return b == 0 ? a : gcd(b, a % b);}//gcd(a,b)=gcd(a,b-a)(b>a);
//__builtin_count()
inline int lcm(int a, int b){return a / gcd(a, b) * b;}//lcm(n,m)=n*m/gcd(n,m)
const ll mod = 998244353;
const int inv2 = (mod+1)/2;
int addmod(int &x, int y) {x = (x + y >= mod ? x + y - mod : x + y);return 1;}
ll qpow(ll a,ll b) {ll res=1;a%=mod; assert(b>=0); for(;b;b>>=1){if(b&1)res=res*a%mod;a=a*a%mod;}return res;}
ll inv(int x){return qpow(x,mod-2);}
inline void read(__int128 &x)
{
    char c; while(!((c=getchar())>='0'&&c<='9'));
    x=c-'0';
    while((c=getchar())>='0'&&c<='9') (x*=10)+=c-'0';
}
int o[200010],on;
inline void output(__int128 x)
{
    on=0;
    while(x) o[++on]=x%10,x/=10;
    for(int i=on;i>=1;i--) cout<<o[i];
}
#define maxn 2000010
struct point{
    ll x,y;
}a[maxn];
#define cp const point&
ll sqr(ll x)
{
    return x*x;
}
ll dis(cp a,cp b)
{
    return sqr(a.x-b.x)+sqr(a.y-b.y);
}
int n,K;
pair<ll,int> id[maxn];
void solve()
{
    cin>>n>>K;
    for(int i=1;i<=n;i++)
    {
        cin>>a[i].x>>a[i].y;
    }
    int x=0;
    for(int i=1;i<=n;i++)
    {
        id[i]={dis(a[i],a[x]),x};
    }
    unordered_map<int,int> rev(K+10);
    rev[0]=0;
    for(int k=1;k<K;k++)
    {
        x=0;
        for(int i=2;i<=n;i++)
        {
            if(id[x]<id[i])
            {
                x=i;
            }
        }
        rev[x]=k;
        for(int i=1;i<=n;i++)
        {
            id[i]=min(id[i],mp(dis(a[x],a[i]),x));
        }
    }
    for(int i=1;i<=n;i++)
    {
        cout<<rev[id[i].second]+1<<" ";
    }
    cout<<'\n';
}
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
int t;
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: 2239ms
memory: 9412kb

input:

100
100000 20
270505 510725
245104 76414
131477 992924
781607 895592
562469 622976
564354 637966
980036 112090
522903 687218
113871 977855
6615 123673
13847 347618
657794 165707
420561 183995
11367 136391
507836 694877
985069 105115
774110 486921
14319 338715
774937 118145
981468 99089
803866 491315...

output:

5 11 4 2 20 20 3 8 4 17 9 10 7 17 8 3 6 9 18 3 6 10 14 2 12 5 7 16 14 20 11 10 15 12 16 2 18 7 2 15 15 9 11 5 20 14 5 11 6 11 14 11 10 14 14 19 17 5 17 14 14 18 19 9 2 7 18 16 12 18 15 10 16 12 17 10 18 6 19 13 2 3 4 6 4 9 7 12 11 6 11 20 20 14 14 2 6 12 3 14 6 5 17 5 17 14 17 7 18 6 12 15 14 12 8 1...

result:

wrong answer there are no students in #1 (test case 1)