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
251
//package pa;

import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.Scanner;

public class boh
{
	public static void main(String[] args)
	{
		runalg();
	}
	
	private static void runalg()
	{
		if (fromFile)
		{
			setInFromFile();
		}
		else
		{
			setInFromSystemIn();
		}
		body();
	}
	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);
		}
		catch(IOException e)
		{
			System.exit(1);
		}
	}
	
	private static Scanner in;
	private static final String fileName = "boh.txt";
	
	private static void setInFromSystemIn()
	{
		in = new Scanner(System.in);
	}
	
	private static Collection<Potwor> potwory;
	private static int punktyZycia;
	
	private static class Potwor implements Comparable<Potwor>
	{
		public final int obrazenia;
		public final int eliksir;
		public final int numer;
		public static int instancji = 0;
		public Potwor()
		{
			numer = ++instancji;
			obrazenia = in.nextInt();
			eliksir = in.nextInt();
		}
		
		public String toString()
		{
			String wynik = "(";
			wynik += "instancja="+numer+", ";
			wynik += "obrazenia="+obrazenia+", ";
			wynik += "eliksir="+eliksir+")";
			return wynik;
		}

		@Override
		public int compareTo(Potwor inny)
		{
			if (obrazenia == inny.obrazenia)
			{
				return 0;
			}
			else if (obrazenia < inny.obrazenia)
			{
				return 1;
			}
			return -1;
		}
	}
	
	private static void body()
	{
		int potworow = in.nextInt();
		punktyZycia = in.nextInt();
		wczytajPotwory(potworow);
		//wypiszPotwory();
		rozwiaz();
		System.out.println(odpowiedz);
		wypiszKolejnosc();
	}
	
	private static bool odpowiedz = bool.NIE;
	private static void wczytajPotwory(int potworow)
	{
		potwory = new ArrayList<Potwor>();
		for (int i = 0; i < potworow; i++)
		{
			potwory.add(new Potwor());
		}
	}
	
	private static void rozwiaz()
	{
		Potwor p = najmniejszy();
		while (p != null)
		{
			punktyZycia -= p.obrazenia;
			if (punktyZycia <= 0)
			{
				odpowiedz = bool.NIE;
				break;
			}
			punktyZycia += p.eliksir;
			kolejnosc.add(p);
			p = najmniejszy();
		}
		odpowiedz = bool.TAK;
	}
	private static void wypisz(Collection<Potwor> kol)
	{
		wypisz(kol, false);
	}
	private static void wypisz(Collection<Potwor> kol, boolean full)
	{
		String wynik = "";
		int indeks = 0;
		int rozmiar = kol.size()-1;
		for (Potwor p : kol)
		{
			if (!full)
			{
				wynik += p.numer;
			}
			else
			{
				wynik += p;
			}
			if (indeks < rozmiar)
			{
				wynik += " ";
			}
			indeks++;
		}
		System.out.println(wynik);
	}
	
	private static void wypiszKolejnosc()
	{
		if (!kolejnosc.isEmpty())
		{
			wypisz(kolejnosc);
		}
	}
	
	private static void wypiszPotwory()
	{
		wypisz(potwory, true);
	}
	
	private static Potwor najmniejszy()
	{
		Potwor wynik = null;
		Integer[] obrazenia = uzyskajObrazenia();
		Integer mniejsze = littleLess(obrazenia, punktyZycia);
		for (Potwor p : potwory)
		{
			if (p.obrazenia == mniejsze)
			{
				wynik = p;
				potwory.remove(p);
				break;
			}
		}
		return wynik;
	}
	
	private static Integer[] uzyskajObrazenia()
	{
		Integer[] wynik = new Integer[potwory.size()];
		int index = 0;
		for (Potwor p : potwory)
		{
			wynik[index] = p.obrazenia;
			index++;
		}
		return wynik;
	}

	private static Integer[] distances(Integer[] kol, Integer liczba)
	{
		Integer[] wynik = new Integer[kol.length];
		int index = 0;
		for (Integer elem : kol)
		{
			int distance = elem-liczba;
			wynik[index] = distance;
			index++;
		}
		return wynik;
	}
	
	private static Integer littleLess(Integer[] kol, Integer liczba)
	{
		Integer[] distances = distances(kol, liczba);
		double min = Double.POSITIVE_INFINITY;
		Integer wynik = null;
		int index = 0;
		for (Integer distance : distances)
		{
			double ddistance = (double) distance;
			if (ddistance < min)
			{
				min = ddistance;
				wynik = kol[index];
			}
			index++;
		}
		return wynik;
	}
	private enum bool
	{
		TAK, NIE;
	}
	
	private static List<Potwor> kolejnosc = new ArrayList<Potwor>();
}