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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
#include <iostream>
#include <cstdint>
#include <vector>
#include <unordered_map>


using namespace std;


typedef  int64_t  lli;


struct Kind
{
	int m_iColor;
	int m_iMass;
	int m_iPrice;
};


struct Color
{
	vector<int> m_vKinds;
};


struct Costs
{
	unordered_map<int16_t, lli> m_mapReminder2Cost;   // key: reminder of total mass; value: minimal total cost
};


struct Table
{
	vector<Costs> m_vCosts;  // first elem - one taken; 2nd elem - two taken, etc.
};


struct MultipleColor
{
	vector<int> m_vKinds;
};


static int iN, iK, iM;

static lli iTotalMassForSingleColors = 0;
static lli iTotalPriceForSingleColors = 0;

static vector<MultipleColor> vMultipleColors;

static Table tblTotal;


static Color aColors[7002];   // one based

static Kind aKinds[7002];     // zero based

static lli aAnswers[7002];    // one based


static void ReadData()
{
	cin >> iN >> iK >> iM;

	for (int i = 0; i < iN; ++i)
	{
		cin >> aKinds[i].m_iColor >> aKinds[i].m_iMass >> aKinds[i].m_iPrice;

		aColors[aKinds[i].m_iColor].m_vKinds.push_back(i);
	}
}


static bool IsMissingColor()
{
	for (int i = 1; i <= iK; ++i)
	{
		if (aColors[i].m_vKinds.size() == 0)
			return true;
	}
	return false;
}


static void WriteOutputForMissingColor()
{
	cout << 0 << endl;

	for (int i = 1; i <= iM - 1; ++i)
	{
		cout << -1;

		if (i != iM - 1)
		{
			cout << endl;
		}
	}
}


static void WriteOutput()
{
	cout << 0 << endl;

	for (int i = 1; i <= iM - 1; ++i)
	{
		cout << aAnswers[i];

		if (i != iM - 1)
		{
			cout << endl;
		}
	}
}


static void InitForSingleColors()
{
	for (int i = 0; i < iN; ++i)
	{
		int iColor = aKinds[i].m_iColor;
		
		if (aColors[iColor].m_vKinds.size() == 1)
		{
			iTotalMassForSingleColors += aKinds[i].m_iMass;
			iTotalPriceForSingleColors += aKinds[i].m_iPrice;
		}
	}
}


static void GatherMultipleColors()
{
	for (int i = 1; i <= iK; ++i)
	{
		if (aColors[i].m_vKinds.size() > 1)
		{
			MultipleColor mc;

			mc.m_vKinds = aColors[i].m_vKinds;

			vMultipleColors.push_back(mc);
		}
	}
}


static inline void UpdateCost(Costs & cst, int iReminder, lli iCost)
{
	if (cst.m_mapReminder2Cost.count(iReminder) == 0)
	{
		cst.m_mapReminder2Cost[iReminder] = iCost;
		return;
	}

	lli iCurrCost = cst.m_mapReminder2Cost[iReminder];

	if (iCost < iCurrCost)
	{
		cst.m_mapReminder2Cost[iReminder] = iCost;
	}
}


static void InitCostForOneElem(Costs & cst, const MultipleColor & mc)
{
	cst.m_mapReminder2Cost.clear();

	for (int iKind : mc.m_vKinds)
	{
		Kind & knd = aKinds[iKind];

		int iReminder = knd.m_iMass % iM;

		UpdateCost(cst, iReminder, knd.m_iPrice);
	}
}


static void InitCostFromThePrevious(Costs & cst, const MultipleColor & mc, const Costs & cstPrevious)
{
	cst.m_mapReminder2Cost.clear();

	for (auto it = cstPrevious.m_mapReminder2Cost.begin(); it != cstPrevious.m_mapReminder2Cost.end(); ++it)
	{
		int iPrevReminder = it->first;
		lli iPrevCost     = it->second;

		for (int iKind : mc.m_vKinds)
		{
			Kind & knd = aKinds[iKind];

			int iReminder = (iPrevReminder + knd.m_iMass) % iM;

			UpdateCost(cst, iReminder, iPrevCost + knd.m_iPrice);
		}
	}
}


static inline int GetMaxTaken()
{
	return iM + 1000;
}


static void InitTableFromMultColor(Table & tbl, const MultipleColor & mc)
{
	Costs cst;

	InitCostForOneElem(cst, mc);

	tbl.m_vCosts.push_back(cst);

	for (int iTaken = 2; iTaken <= GetMaxTaken(); ++iTaken)
	{
		InitCostFromThePrevious(cst, mc, tbl.m_vCosts.back());

		tbl.m_vCosts.push_back(cst);
	}
}


static void MergeCosts(Costs & cstDst, const Costs & cstSrc0, const Costs & cstSrc1)
{
	cstDst.m_mapReminder2Cost.clear();

	for (auto it = cstSrc0.m_mapReminder2Cost.begin(); it != cstSrc0.m_mapReminder2Cost.end(); ++it)
	{
		int iReminder0 = it->first;
		lli iCost0     = it->second;

		for (auto it = cstSrc1.m_mapReminder2Cost.begin(); it != cstSrc1.m_mapReminder2Cost.end(); ++it)
		{
			int iReminder1 = it->first;
			lli iCost1 = it->second;

			int iReminder = (iReminder0 + iReminder1) % iM;

			UpdateCost(cstDst, iReminder, iCost0 + iCost1);
		}
	}
}


static void MergeTables(Table & tblDst, const Table & tblSrc0, const Table & tblSrc1)
{
	Costs cst;

	tblDst.m_vCosts.clear();

	for (int i = 0; i < tblSrc0.m_vCosts.size(); ++i)
	{
		MergeCosts(cst, tblSrc0.m_vCosts[i], tblSrc1.m_vCosts[i]);

		tblDst.m_vCosts.push_back(cst);
	}
}


static void InitForMultipleColors()
{
	GatherMultipleColors();

	if (vMultipleColors.size() == 0)
		return;

	if (vMultipleColors.size() == 1)
	{
		InitTableFromMultColor(tblTotal, vMultipleColors[0]);
		return;
	}

	Table tblAcc, tblTmp;

	for (int i = 0; i < vMultipleColors.size(); ++i)
	{
		if (i == 0)
		{
			InitTableFromMultColor(tblAcc, vMultipleColors[0]);
			continue;
		}

		InitTableFromMultColor(tblTmp, vMultipleColors[i]);
		MergeTables(tblTotal, tblAcc, tblTmp);

		if (i != vMultipleColors.size() - 1)
		{
			tblAcc = tblTotal;
		}
	}
}


static void Init()
{
	for (int i = 1; i < iM; ++i)
	{
		aAnswers[i] = -1;  // which means 'unknown'
	}

	InitForSingleColors();
	InitForMultipleColors();
}


static inline void UpdateAnswer(int iReminder, lli iCost)
{
	if (iReminder == 0)
		return;

	if (aAnswers[iReminder] == -1)
	{
		aAnswers[iReminder] = iCost;
		return;
	}

	if (iCost < aAnswers[iReminder])
	{
		aAnswers[iReminder] = iCost;
	}
}


static void SolveWithoutMultipleColors()
{
	lli iMass = 0;
	lli iPrice = 0;

	for (int iTaken = 1; iTaken <= iM; ++iTaken)
	{
		iMass  += iTotalMassForSingleColors;
		iPrice += iTotalPriceForSingleColors;

		int iReminder = iMass % iM;

		UpdateAnswer(iReminder, iPrice);
	}
}


static void SolveWithMultipleColors()
{
	lli iMass = 0;
	lli iPrice = 0;

	for (int iTaken = 1; iTaken <= GetMaxTaken(); ++iTaken)
	{
		iMass += iTotalMassForSingleColors;
		iPrice += iTotalPriceForSingleColors;

		const Costs & cst = tblTotal.m_vCosts[iTaken - 1];

		for (auto it = cst.m_mapReminder2Cost.begin(); it != cst.m_mapReminder2Cost.end(); ++it)
		{
			int iReminder0 = it->first;
			lli iCost0 = it->second;

			int iReminder = (iMass + iReminder0) % iM;

			UpdateAnswer(iReminder, iPrice + iCost0);
		}
	}
}


static void Solve()
{
	if (vMultipleColors.size() == 0)
	{
		SolveWithoutMultipleColors();
	}
	else
	{
		SolveWithMultipleColors();
	}

	WriteOutput();
}


static void OneCase()
{
	ReadData();

	if (IsMissingColor())
	{
		WriteOutputForMissingColor();
		return;
	}

	Init();
	Solve();
}


int main()
{
	OneCase();
}