이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
import java.util.*;
import java.io.*;
public class bridge {
public static void main (String[]args) throws IOException {
Scanner scan = new Scanner (System.in);
try {
int allowedBridges = scan.nextInt();
int citizenNumber = scan.nextInt();
long previousAdding = 0;
ArrayList<Integer> locations = new ArrayList<Integer>();
for (int i = 0; i < citizenNumber; i++) {
String line = scan.next();
char startZone = line.charAt(0);
int index = 0;
for (int j = 1; j < line.length(); j++) {
if (line.charAt(j) == 'A' || line.charAt(j) == 'B') {
index = j;
break;
}
}
int startLocation = Integer.valueOf(line.substring(1, index));
char endZone = line.charAt(index);
int endLocation = Integer.valueOf(line.substring(index + 1));
if (startZone == endZone) {
previousAdding += Math.abs(endLocation - startLocation);
continue;
}
locations.add(startLocation);
locations.add(endLocation);
}
/*
* If we are only able to build one bridge, we should
* build it at the median of all start and end locations.
* After find the median, we can calculate the answer
* by looping through all values and adding the previously
* calculated value for locations in the same zone.
*/
if (allowedBridges == 1) {
long answer = 0;
if (locations.size() != 0) {
Collections.sort(locations);
int size = locations.size();
int median = locations.get(size / 2 - 1);
for (int i = 0; i < locations.size(); i++) {
answer += Math.abs(locations.get(i) - median);
}
answer += (locations.size() / 2);
}
answer += previousAdding;
System.out.println(answer);
}
else {
System.out.println(100);
}
}
catch (Exception e) {
return;
}
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |