//package pa; import java.io.File; import java.io.IOException; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.List; import java.util.Scanner; public class pak { public static void main(String[] args) { runalg(); } private static void runalg() { debugln("Running algorithm ..."); if (fromFile) { setInFromFile(); } else { setInFromSystemIn(); } debugln("Ready for work ..."); body(); debugln("Closing source ..."); in.close(); debugln("Finished algorithm."); } private static final boolean debug = false; private static void debugln(String msg) { debug(msg+"\n"); } private static void debug(String msg) { if (debug) { System.out.print(msg); } } private static final boolean fromFile = false; private static void setInFromFile() { File plik = new File(fileName); try { in = new Scanner(plik); debugln("Plik "+fileName+" znaleziony"); } catch(IOException e) { debugln("Plik "+fileName+" NIE znaleziony"); System.exit(1); } } private static Scanner in; private static final String fileName = "pak.txt"; private static void setInFromSystemIn() { in = new Scanner(System.in); debugln("Source is now System.in"); } private static void body() { int przedmiotow = in.nextInt(); debugln("Przedmiotow is "+przedmiotow); int plecakow = in.nextInt(); debugln("Plecakow is "+plecakow); wczytajPrzedmioty(przedmiotow); wczytajPlecaki(plecakow); rozwiaz(); wypiszOdpowiedz(); } private static void wczytajPrzedmioty(int przedmiotow) { przedmioty = new Integer[przedmiotow]; for (int i = 0; i < przedmiotow; i++) { przedmioty[i] = in.nextInt(); } debugln("Wczytano przedmioty."); } private static Integer[] przedmioty; private static void wczytajPlecaki(int plecakow) { plecaki = new Integer[plecakow]; for (int i = 0; i < plecakow; i++) { plecaki[i] = in.nextInt(); } uzytePlecaki = Arrays.copyOf(plecaki, plecakow); debugln("Wczytano plecaki."); } private static Integer[] plecaki; private static void rozwiaz() { debugln("Oceniam szanse na sukces ..."); int sumaUdzwigowPlecakow = sum(plecaki); debugln("sumaUdzwigowPlecakow="+sumaUdzwigowPlecakow); int sumaMasPrzedmiotow = sum(przedmioty); debugln("sumaMasPrzedmiotow="+sumaMasPrzedmiotow); if (sumaMasPrzedmiotow > sumaUdzwigowPlecakow) { odpowiedz = "NIE"; debugln("Przedmioty waza wiecej niz udzwig plecakow."); return; } List<Integer> p = asList(przedmioty); while (!p.isEmpty()) { Integer max = Collections.max(p); debugln("Kolejny ciezki przedmiot to "+max); Integer udzwigPlecaka = littleMore(plecaki, max); debugln("zmiesci sie do plecaka o "+udzwigPlecaka+" udzwigu"); wlozDoPlecaka(max, udzwigPlecaka); p.remove((Object)max); } odpowiedz = uzyskajNieUzytePlecaki(); } private static String uzyskajNieUzytePlecaki() { int wynik = 0; for (int i = 0; i < plecaki.length; i++) { if (plecaki[i] != uzytePlecaki[i]) { wynik++; } } String swynik = String.valueOf(wynik); return swynik; } private static void wypiszOdpowiedz() { System.out.println(odpowiedz); } private static Integer[] uzytePlecaki; private static String odpowiedz = ""; private static Integer sum(Integer[] kolekcja) { Integer wynik = 0; for (Integer element : kolekcja) { wynik += element; } return wynik; } private static List<Integer> asList(Integer[] kol) { List<Integer> wynik = new ArrayList<Integer>(); for (Integer elem : kol) { wynik.add(elem); } return wynik; } private static interface Predicate<Value> { boolean apply(Value v); } private static Integer littleMore(Integer[] kol, final Integer liczba) { List<Integer> lk = asList(kol); lk = filter(lk, new Predicate<Integer>(){ public boolean apply(Integer v){ return v >= liczba; } }); Integer[] distances = distances(lk, liczba); List<Integer> ld = asList(distances); Integer min = Collections.min(ld); Integer wynik = null; int index = 0; for (Integer distance : ld) { if (distance == min) { wynik = lk.get(index); break; } index++; } return wynik; } private static List<Integer> filter(List<Integer> ld, Predicate<Integer> predicate) { List<Integer> result = new ArrayList<Integer>(); for (Integer element :ld) { boolean underResult = predicate.apply(element); if (underResult) { result.add(element); } } return result; } private static Integer[] distances(List<Integer> kol, Integer liczba) { Integer[] wynik = new Integer[kol.size()]; int index = 0; for (Integer elem : kol) { int distance = elem-liczba; wynik[index] = distance; index++; } return wynik; } private static void wlozDoPlecaka(int przedmiot, int plecak) { int index = 0; for (Integer obecny : plecaki) { if (obecny == plecak) { plecaki[index] -= przedmiot; } index++; } } }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 | //package pa; import java.io.File; import java.io.IOException; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.List; import java.util.Scanner; public class pak { public static void main(String[] args) { runalg(); } private static void runalg() { debugln("Running algorithm ..."); if (fromFile) { setInFromFile(); } else { setInFromSystemIn(); } debugln("Ready for work ..."); body(); debugln("Closing source ..."); in.close(); debugln("Finished algorithm."); } private static final boolean debug = false; private static void debugln(String msg) { debug(msg+"\n"); } private static void debug(String msg) { if (debug) { System.out.print(msg); } } private static final boolean fromFile = false; private static void setInFromFile() { File plik = new File(fileName); try { in = new Scanner(plik); debugln("Plik "+fileName+" znaleziony"); } catch(IOException e) { debugln("Plik "+fileName+" NIE znaleziony"); System.exit(1); } } private static Scanner in; private static final String fileName = "pak.txt"; private static void setInFromSystemIn() { in = new Scanner(System.in); debugln("Source is now System.in"); } private static void body() { int przedmiotow = in.nextInt(); debugln("Przedmiotow is "+przedmiotow); int plecakow = in.nextInt(); debugln("Plecakow is "+plecakow); wczytajPrzedmioty(przedmiotow); wczytajPlecaki(plecakow); rozwiaz(); wypiszOdpowiedz(); } private static void wczytajPrzedmioty(int przedmiotow) { przedmioty = new Integer[przedmiotow]; for (int i = 0; i < przedmiotow; i++) { przedmioty[i] = in.nextInt(); } debugln("Wczytano przedmioty."); } private static Integer[] przedmioty; private static void wczytajPlecaki(int plecakow) { plecaki = new Integer[plecakow]; for (int i = 0; i < plecakow; i++) { plecaki[i] = in.nextInt(); } uzytePlecaki = Arrays.copyOf(plecaki, plecakow); debugln("Wczytano plecaki."); } private static Integer[] plecaki; private static void rozwiaz() { debugln("Oceniam szanse na sukces ..."); int sumaUdzwigowPlecakow = sum(plecaki); debugln("sumaUdzwigowPlecakow="+sumaUdzwigowPlecakow); int sumaMasPrzedmiotow = sum(przedmioty); debugln("sumaMasPrzedmiotow="+sumaMasPrzedmiotow); if (sumaMasPrzedmiotow > sumaUdzwigowPlecakow) { odpowiedz = "NIE"; debugln("Przedmioty waza wiecej niz udzwig plecakow."); return; } List<Integer> p = asList(przedmioty); while (!p.isEmpty()) { Integer max = Collections.max(p); debugln("Kolejny ciezki przedmiot to "+max); Integer udzwigPlecaka = littleMore(plecaki, max); debugln("zmiesci sie do plecaka o "+udzwigPlecaka+" udzwigu"); wlozDoPlecaka(max, udzwigPlecaka); p.remove((Object)max); } odpowiedz = uzyskajNieUzytePlecaki(); } private static String uzyskajNieUzytePlecaki() { int wynik = 0; for (int i = 0; i < plecaki.length; i++) { if (plecaki[i] != uzytePlecaki[i]) { wynik++; } } String swynik = String.valueOf(wynik); return swynik; } private static void wypiszOdpowiedz() { System.out.println(odpowiedz); } private static Integer[] uzytePlecaki; private static String odpowiedz = ""; private static Integer sum(Integer[] kolekcja) { Integer wynik = 0; for (Integer element : kolekcja) { wynik += element; } return wynik; } private static List<Integer> asList(Integer[] kol) { List<Integer> wynik = new ArrayList<Integer>(); for (Integer elem : kol) { wynik.add(elem); } return wynik; } private static interface Predicate<Value> { boolean apply(Value v); } private static Integer littleMore(Integer[] kol, final Integer liczba) { List<Integer> lk = asList(kol); lk = filter(lk, new Predicate<Integer>(){ public boolean apply(Integer v){ return v >= liczba; } }); Integer[] distances = distances(lk, liczba); List<Integer> ld = asList(distances); Integer min = Collections.min(ld); Integer wynik = null; int index = 0; for (Integer distance : ld) { if (distance == min) { wynik = lk.get(index); break; } index++; } return wynik; } private static List<Integer> filter(List<Integer> ld, Predicate<Integer> predicate) { List<Integer> result = new ArrayList<Integer>(); for (Integer element :ld) { boolean underResult = predicate.apply(element); if (underResult) { result.add(element); } } return result; } private static Integer[] distances(List<Integer> kol, Integer liczba) { Integer[] wynik = new Integer[kol.size()]; int index = 0; for (Integer elem : kol) { int distance = elem-liczba; wynik[index] = distance; index++; } return wynik; } private static void wlozDoPlecaka(int przedmiot, int plecak) { int index = 0; for (Integer obecny : plecaki) { if (obecny == plecak) { plecaki[index] -= przedmiot; } index++; } } } |