fork download
  1. import java.io.BufferedReader;
  2. import java.io.IOException;
  3. import java.io.InputStreamReader;
  4. import java.util.ArrayList;
  5. import java.util.HashSet;
  6. import java.util.List;
  7.  
  8. public class Main {
  9.  
  10. public static void main(String[] args) {
  11. String input;
  12. while ((input = br.readLine()) != null) {
  13. if (input.equalsIgnoreCase("exit"))
  14. return;
  15. long startNano = System.nanoTime();
  16. brute(input);
  17. long endNano = System.nanoTime();
  18. long diff = endNano - startNano;
  19. long diffMilli = diff / 1000000;
  20. System.out.println("Time: " + diffMilli + " ms");
  21. }
  22. } catch (IOException e) {
  23. e.printStackTrace();
  24. }
  25. }
  26.  
  27. /**
  28. * Method inputs all integers into a hashset, and then sums two integers
  29. * and checks for the negation in the set.
  30. * @param input
  31. */
  32. private static void brute(String input) {
  33. List<Triplet> list = new ArrayList<Triplet>();
  34. String[] nums = input.split("\\s");
  35. int[] array = new int[nums.length];
  36. int index = 0;
  37. HashSet<Integer> set = new HashSet<Integer>();
  38. for (String s : nums) {
  39. int num = Integer.parseInt(s);
  40. set.add(num);
  41. array[index] = num;
  42. index++;
  43. }
  44.  
  45. int i, j, size = array.length;
  46. for (i = 0; i < size - 1; i++) {
  47. for (j = i + 1; j < size; j++) {
  48. if (set.contains(-(array[i] + array[j]))) {
  49. Triplet t = new Triplet(array[i], array[j], -(array[i] + array[j]));
  50. if (list.contains(t)) {
  51. continue;
  52. }
  53. list.add(t);
  54. System.out.printf("%d %d %d\n", array[i], array[j], -(array[i] + array[j]));
  55. }
  56. }
  57. }
  58. }
  59.  
  60. public static class Triplet {
  61. private int x, y, z;
  62.  
  63. public Triplet(int x, int y, int z) {
  64. this.x = x;
  65. this.y = y;
  66. this.z = z;
  67. }
  68.  
  69. @Override
  70. public int hashCode() {
  71. final int prime = 31;
  72. int result = 1;
  73. result = prime * result;
  74. result = prime * result + x;
  75. result = prime * result + y;
  76. result = prime * result + z;
  77. return result;
  78. }
  79.  
  80. @Override
  81. public boolean equals(Object obj) {
  82. if (this == obj)
  83. return true;
  84. if (obj == null)
  85. return false;
  86. if (getClass() != obj.getClass())
  87. return false;
  88. Triplet other = (Triplet) obj;
  89. if (x != other.x)
  90. return false;
  91. if (y != other.y)
  92. return false;
  93. if (z != other.z)
  94. return false;
  95. return true;
  96. }
  97.  
  98. }
  99. }
Success #stdin #stdout 0.08s 4386816KB
stdin
9 -6 -5 9 8 3 -4 8 1 7 -4 9 -9 1 9 -9 9 4 -6 -8
4 5 -1 -2 -7 2 -5 -3 -7 -3 1
-1 -6 -3 -7 5 -8 2 -8 1
-5 -1 -4 2 9 -9 -6 -1 -7
stdout
9 -5 -4
9 -4 -5
-6 3 3
-5 9 -4
-5 -4 9
-5 1 4
-5 4 1
8 -4 -4
8 1 -9
8 -9 1
3 -4 1
3 1 -4
3 -6 3
-4 8 -4
-4 1 3
-4 -4 8
-4 9 -5
1 7 -8
1 -4 3
1 -9 8
1 4 -5
1 -8 7
7 1 -8
7 -8 1
-9 1 8
4 -8 4
Time: 11 ms
4 -1 -3
4 -2 -2
4 -5 1
4 -3 -1
4 1 -5
5 -2 -3
5 -7 2
5 2 -7
5 -3 -2
-1 2 -1
-1 -3 4
-2 -3 5
-2 1 1
-7 2 5
2 -3 1
2 -7 5
2 1 -3
-5 1 4
-3 1 2
Time: 10 ms
-1 2 -1
-6 5 1
-6 1 5
-3 2 1
-3 1 2
-7 5 2
-7 2 5
5 2 -7
5 1 -6
2 1 -3
Time: 1 ms
-5 -4 9
-5 9 -4
-1 2 -1
-1 -1 2
-4 2 2
-4 9 -5
2 -1 -1
Time: 0 ms