import java.io.BufferedOutputStream; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.PrintWriter; import java.util.ArrayList; import java.util.Collections; import java.util.Comparator; import java.util.List; import java.util.StringTokenizer; public class boh { public static void main(String[] args) throws IOException { boh solver = new boh(); solver.init(); solver.solve(); } private void init() { } private static class Creature { int idx; int d; int a; public Creature(int idx, int d, int a) { super(); this.idx = idx; this.d = d; this.a = a; } } private void solve() throws IOException { Reader in = new Reader(System.in); PrintWriter out = new PrintWriter(new BufferedOutputStream(System.out)); int n = in.nextInt(); long z = in.nextInt(); List<Creature> l1 = new ArrayList<Creature>(); List<Creature> l2 = new ArrayList<Creature>(); for (int i = 1; i <= n; i++) { Creature c = new Creature(i, in.nextInt(), in.nextInt()); if (c.d <= c.a) { l1.add(c); } else { l2.add(c); } } Collections.sort(l1, new Comparator<Creature>() { @Override public int compare(Creature o1, Creature o2) { return o1.d - o2.d; } }); Collections.sort(l2, new Comparator<Creature>() { @Override public int compare(Creature o1, Creature o2) { return o2.a - o1.a; } }); l1.addAll(l2); List<Integer> result = new ArrayList<Integer>(n); for (Creature c : l1) { if (z > c.d) { result.add(c.idx); z += c.a - c.d; } else { break; } } if (result.size() == n && z > 0) { out.println("TAK"); for (Integer idx : result) out.print(idx + " "); out.println(); } else { out.println("NIE"); } out.flush(); out.close(); } private static class Reader { BufferedReader reader; StringTokenizer tokenizer; /** call this method to initialize reader for InputStream */ Reader(InputStream input) { reader = new BufferedReader( new InputStreamReader(input) ); tokenizer = new StringTokenizer(""); } public void skipLine() throws IOException { reader.readLine(); } /** get next word */ public String next() throws IOException { while ( ! tokenizer.hasMoreTokens() ) { //TODO add check for eof if necessary tokenizer = new StringTokenizer( reader.readLine() ); } return tokenizer.nextToken(); } public int nextInt() throws IOException { return Integer.parseInt( next() ); } public double nextDouble() throws IOException { return Double.parseDouble( next() ); } public long nextLong() throws IOException { return Long.parseLong(next()); } } }
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 | import java.io.BufferedOutputStream; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.PrintWriter; import java.util.ArrayList; import java.util.Collections; import java.util.Comparator; import java.util.List; import java.util.StringTokenizer; public class boh { public static void main(String[] args) throws IOException { boh solver = new boh(); solver.init(); solver.solve(); } private void init() { } private static class Creature { int idx; int d; int a; public Creature(int idx, int d, int a) { super(); this.idx = idx; this.d = d; this.a = a; } } private void solve() throws IOException { Reader in = new Reader(System.in); PrintWriter out = new PrintWriter(new BufferedOutputStream(System.out)); int n = in.nextInt(); long z = in.nextInt(); List<Creature> l1 = new ArrayList<Creature>(); List<Creature> l2 = new ArrayList<Creature>(); for (int i = 1; i <= n; i++) { Creature c = new Creature(i, in.nextInt(), in.nextInt()); if (c.d <= c.a) { l1.add(c); } else { l2.add(c); } } Collections.sort(l1, new Comparator<Creature>() { @Override public int compare(Creature o1, Creature o2) { return o1.d - o2.d; } }); Collections.sort(l2, new Comparator<Creature>() { @Override public int compare(Creature o1, Creature o2) { return o2.a - o1.a; } }); l1.addAll(l2); List<Integer> result = new ArrayList<Integer>(n); for (Creature c : l1) { if (z > c.d) { result.add(c.idx); z += c.a - c.d; } else { break; } } if (result.size() == n && z > 0) { out.println("TAK"); for (Integer idx : result) out.print(idx + " "); out.println(); } else { out.println("NIE"); } out.flush(); out.close(); } private static class Reader { BufferedReader reader; StringTokenizer tokenizer; /** call this method to initialize reader for InputStream */ Reader(InputStream input) { reader = new BufferedReader( new InputStreamReader(input) ); tokenizer = new StringTokenizer(""); } public void skipLine() throws IOException { reader.readLine(); } /** get next word */ public String next() throws IOException { while ( ! tokenizer.hasMoreTokens() ) { //TODO add check for eof if necessary tokenizer = new StringTokenizer( reader.readLine() ); } return tokenizer.nextToken(); } public int nextInt() throws IOException { return Integer.parseInt( next() ); } public double nextDouble() throws IOException { return Double.parseDouble( next() ); } public long nextLong() throws IOException { return Long.parseLong(next()); } } } |