Codeforces Round #412 (rated, Div. 2, base on VK Cup 2017 Round 3), problem: (F) Perishable Roads Solution In JAVA

import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.io.PrintWriter;
import java.util.StringTokenizer;

public class Div2_412F {

public static void main(String[] args) throws IOException {
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
PrintWriter printer = new PrintWriter(new BufferedWriter(new OutputStreamWriter(System.out)));
int numV = Integer.parseInt(reader.readLine());

long[][] aMat = new long[numV][numV];
long[] mCost = new long[numV];

long oMin = Long.MAX_VALUE / 8;
for (int i = 0; i < numV – 1; i++) {
StringTokenizer inputData = new StringTokenizer(reader.readLine());

for (int j = i + 1; j < numV; j++) {
long nLong = Long.parseLong(inputData.nextToken());
aMat[i][j] = nLong;
aMat[j][i] = nLong;
if (nLong < oMin) {
oMin = nLong;
}
}
}
reader.close();

for (int i = 0; i < numV; i++) {
for (int j = 0; j < numV; j++) {
if (i != j) {
aMat[i][j] -= oMin;
}
}
}

for (int i = 0; i < numV; i++) {
long mEdge = Long.MAX_VALUE / 8;
for (int j = 0; j < numV; j++) {
if (i != j && aMat[i][j] < mEdge) {
mEdge = aMat[i][j];
}
}
mCost[i] = mEdge << 1;
}

boolean[] fin = new boolean[numV];
for (int i = 0; i < numV; i++) {
int cV = -1;

for (int j = 0; j < numV; j++) {
if (!fin[j] && (cV == -1 || mCost[j] < mCost[cV])) {
cV = j;
}
}

for (int adj = 0; adj < numV; adj++) {
if (adj != cV && mCost[cV] + aMat[cV][adj] < mCost[adj]) {
mCost[adj] = mCost[cV] + aMat[cV][adj];
}
}
fin[cV] = true;
}

for (int i = 0; i < numV; i++) {
printer.println(mCost[i] + (numV – 1) * oMin);
}
printer.close();
}
}

A Sea Cucumber’s Amputated...

The Mystery of the Undying Sea Cucumber TissueNature never...

Why Everyone is Obsessed with the Shower Phone Holder Case

Are you tired of dealing with everyday frustrations that slow down your routine? We've all been...

Why Everyone is Obsessed with the Universal Travel Adapter

Are you tired of dealing with everyday frustrations that slow down your routine? We've all been...

Why Everyone is Obsessed with the Bamboo Cutting Board Set

Are you tired of dealing with everyday frustrations that slow down your routine? We've all been...

A Sea Cucumber’s Amputated Tissue Refuses To Die. Could It Live Forever?

The Mystery of the Undying Sea Cucumber TissueNature never ceases to amaze, and the latest discovery in marine biology has left scientists questioning the...

Why Everyone is Obsessed with the Car Seat Gap Organizer

Are you tired of dealing with everyday frustrations that slow down your routine? We've all been...

Why Everyone is Obsessed with the Reusable Lint Roller

Are you tired of dealing with everyday frustrations that slow down your routine? We've all been...

DraftKings: Prediction Markets Are Eating This Company’s Lunch (Rating Downgrade)

The online sports betting landscape is shifting rapidly, and industry giant DraftKings (DKNG) is finding itself in increasingly turbulent waters. Once the undisputed darling...

Why Everyone is Obsessed with the Universal Charging Cable

Are you tired of dealing with everyday frustrations that slow down your routine? We've all been...

Why Everyone is Obsessed with the Fridge Odor Eliminator

Are you tired of dealing with everyday frustrations that slow down your routine? We've all been...