제출 #257182

#제출 시각아이디문제언어결과실행 시간메모리
257182eohomegrownappsTowns (IOI15_towns)C++14
25 / 100
30 ms512 KiB
#include "towns.h"
#include <bits/stdc++.h>
using namespace std;

vector<vector<int>> distv;
int n;

int gd;

int dist(int a, int b){
    if (a==b){return 0;}
    if (a>b){
        swap(a,b);
    }
    if (distv[a][b]!=-1){
        return distv[a][b];
    } else {
        gd++;
        assert(gd<=(n*(n-1))/2);
        return distv[a][b]=getDistance(a,b);
    }
}

int grab(){
    int hd = 0;
    int adist = -1;
    int aind = -1;
    for (int i = 0; i<n; i++){
        int ds = dist(1,i);
        if (adist<ds){
            adist=ds;
            aind=i;
        }
    }

    int bdist = -1;
    int bind = -1;
    for (int i = 0; i<n; i++){
        int ds = dist(aind,i);
        if (bdist<ds){
            bdist=ds;
            bind=i;
        }
    }

    bool exists = true;
    //from adist to aind
    //vector<int> diameter;
    int hubdist = 1e9;
    vector<int> hubposs;
    for (int i = 0; i<n; i++){
        if (i==aind||i==bind){continue;}
        int distfroma = dist(aind,i)-(dist(aind,i)+dist(bind,i)-dist(aind,bind))/2;
        int rv = max(distfroma,dist(aind,bind)-distfroma);
        if (rv<hubdist){
            hubdist=rv;
            hubposs.clear();
            hubposs.push_back(i);
        } else if (rv==hubdist){
            hubposs.push_back(i);
        }
    }
    assert(hubposs.size()<=2);
    for (int hubind : hubposs){
        //cout<<"hub: "<<hubind<<'\n';
        hd=hubdist;
        int hubfroma = dist(aind,hubind)-(dist(aind,hubind)+dist(bind,hubind)-dist(aind,bind))/2;;
        vector<int> nodesinhub;
        int befcnt=0;
        int aftcnt=0;
        for (int i = 0; i<n; i++){
            int distfroma = dist(aind,i)-(dist(aind,i)+dist(bind,i)-dist(aind,bind))/2;
            if (distfroma<hubfroma){
                befcnt++;
            } else if (distfroma==hubfroma){
                nodesinhub.push_back(i);
            } else {
                aftcnt++;
            }
        }
        //cout<<befcnt<<' '<<aftcnt<<' '<<nodesinhub.size()<<'\n';
        if (befcnt>n/2||aftcnt>n/2){exists=false;continue;}
        vector<bool> visited(n,false);
        int nodesleft = nodesinhub.size();
        for (int i : nodesinhub){
            if (visited[i]){continue;}
            if (nodesleft<=n/2){exists=true;break;}
            int nodesingrp = 1;
            visited[i]=true;
            for (int j : nodesinhub){
                if (!visited[j]){
                    if (dist(i,j)<dist(aind,i)+dist(aind,j)-2*hubfroma){
                        nodesingrp++;
                        visited[j]=true;
                    }
                }
            }
            //cout<<nodesingrp<<'\n';
            if (nodesingrp>n/2){exists=false;break;}
            nodesleft-=nodesingrp;
        }
        if (exists){
            return hd;
        }
    }
    return -hd;
}

int hubDistance(int N, int sub) {
    gd=0;
    n=N;
    distv.assign(n,vector<int>(n,-1));
	
    if (sub>2){return grab();}

    int adist = -1;
    int aind = -1;
    for (int i = 0; i<n; i++){
        int ds = dist(1,i);
        if (adist<ds){
            adist=ds;
            aind=i;
        }
    }


    int bdist = -1;
    int bind = -1;
    for (int i = 0; i<n; i++){
        int ds = dist(aind,i);
        if (bdist<ds){
            bdist=ds;
            bind=i;
        }
    }

    //from adist to aind
    //vector<int> diameter;
    int hubdist = 1e9;
    int hubind = -1;
    for (int i = 0; i<n; i++){
        if (i==aind||i==bind){continue;}
        int distfroma = dist(aind,i)-(dist(aind,i)+dist(bind,i)-dist(aind,bind))/2;
        int rv = max(distfroma,dist(aind,bind)-distfroma);
        if (rv<hubdist){
            hubdist=rv;
            hubind=i;
        }
    }
    return hubdist;
}

컴파일 시 표준 에러 (stderr) 메시지

towns.cpp: In function 'int grab()':
towns.cpp:84:40: warning: conversion to 'int' from 'std::vector<int>::size_type {aka long unsigned int}' may alter its value [-Wconversion]
         int nodesleft = nodesinhub.size();
                         ~~~~~~~~~~~~~~~^~
towns.cpp: In function 'int hubDistance(int, int)':
towns.cpp:140:9: warning: variable 'hubind' set but not used [-Wunused-but-set-variable]
     int hubind = -1;
         ^~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...