Submission #658793

# Submission time Handle Problem Language Result Execution time Memory
658793 2022-11-14T23:45:07 Z coderInTraining Palembang Bridges (APIO15_bridge) Java 11
0 / 100
107 ms 10120 KB
import java.util.*;

class bridge {
    public static void main (String[]args) {
        Scanner scan = new Scanner (System.in);

        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);
        }
    }
}
# Verdict Execution time Memory Grader output
1 Runtime error 107 ms 10120 KB Execution failed because the return code was nonzero
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 99 ms 9948 KB Execution failed because the return code was nonzero
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 102 ms 10084 KB Execution failed because the return code was nonzero
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 106 ms 9832 KB Execution failed because the return code was nonzero
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 99 ms 10048 KB Execution failed because the return code was nonzero
2 Halted 0 ms 0 KB -