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
#include <cstdio>
#include <vector>

//#define DEBUG

using namespace std;

class room
{
public:
int prv,cnt;

	room();
	room(const int p,const int c);
	room(const room &s);
room operator=(const room &s);
};

room::room()
{
	prv = 0;
	cnt = 0;
}

room::room(const int p,const int c)
{
	prv = p;
	cnt = c;
}

room::room(const room &s)
{
	prv = s.prv;
	cnt = s.cnt;
}

room room::operator=(const room &s)
{
	prv = s.prv;
	cnt = s.cnt;

	return *this;
}

///////////////////////////////////////

class day
{
public:
int K;
vector<room> P;

	day();
	day(const int k);
	day(const day &s);
day operator=(const day &s);
int add(const int s);
void print() const;
};

day::day()
{
	K = 1;
	P.clear();
}

day::day(const int k)
{
	K = k;
	P.clear();
}

day::day(const day &s)
{
	K = s.K;
	for (vector<room>::const_iterator i = s.P.begin(); i != s.P.end(); ++i)
		P.push_back(*i);
}

day day::operator=(const day &s)
{
	K = s.K;
	for (vector<room>::const_iterator i = s.P.begin(); i != s.P.end(); ++i)
		P.push_back(*i);
	
	return *this;
}

int day::add(const int s)
{
	P.push_back(room(s,0));
	
	return s;
}

void day::print() const
{
#ifdef DEBUG
	printf("%d : %d\n",K,P.size());
	for (vector<room>::const_iterator i = P.begin(); i != P.end(); ++i)
		printf("%d ",*i);
	printf("\n");
#endif
}

/////////////////////////////////////////////////

class conf
{
public:
vector<day> D;

	conf();
	conf(const int k);
	conf(const conf &s);
conf operator=(const conf &s);
int setD(const int d);
int add(const int d,const int k);
void print() const;
int ret();
};

conf::conf()
{
	D.clear();
}

conf::conf(const int k)
{
	D.clear();
	for (int i = 0; i < k; i++)
		D.push_back(day(i+1));
}

conf::conf(const conf &s)
{
	for (vector<day>::const_iterator i = s.D.begin(); i != s.D.end(); ++i)
		D.push_back(*i);
}

conf conf::operator=(const conf &s)
{
	for (vector<day>::const_iterator i = s.D.begin(); i != s.D.end(); ++i)
		D.push_back(*i);

	return *this;
}

int conf::setD(const int d)
{
	D.clear();
	for (int i = 0; i < d; i++)
		D.push_back(day(i+1));
	
	return d;
}

int conf::add(const int d,const int k)
{
	if (d < 1 || d > D.size())
	{
#ifdef DEBUG
		printf("Out of range!\n");
#endif
		return 0;
	}
	
	D[d-1].add(k);
	
	return k;
}

void conf::print() const
{
#ifdef DEBUG
	for (vector<day>::const_iterator i = D.begin(); i != D.end(); ++i)
	{
		printf("%d : ",i->K);
		for (vector<room>::const_iterator j = i->P.begin(); j != i->P.end(); ++j)
			printf("%d(%d) ",j->prv,j->cnt);
		printf("\n");
	}
#endif
}

int conf::ret()
{
int m,p;

	for (int i = D.size()-1; i >= 0; i--)
	{
		for (int j = D[i].P.size()-1; j >= 0; j--)
		{
			if (D[i].P[j].cnt == 0)
			{
				D[i].P[j].cnt = 1;
				if (D[i].P[j].prv > 0) D[i-1].P[D[i].P[j].prv-1].cnt++;
#ifdef DEBUG
				printf("Debug: day=%d room=%d prv=%d new person\n",i,j,D[i].P[j].prv);
#endif
			}
			else
			{
				if (D[i].P[j].prv > 0) D[i-1].P[D[i].P[j].prv-1].cnt += D[i].P[j].cnt;
#ifdef DEBUG
				printf("Debug: day=%d room=%d prv=%d already is %d\n",i,j,D[i].P[j].prv,D[i].P[j].cnt);
#endif
			}
		}
	}
	
	m = 0;
	for (int i = 0; i < D.size(); i++)
	{
		p = 0;
		for (int j = 0; j < D[i].P.size(); j++)
			p += D[i].P[j].cnt;
		if (m < p) m = p;
//		printf("m=%d p=%d\n",m,p);
	}
	
	return m;
}

/////////////////////////////////////////////////

int main()
{
int K,k,N,n,p;
conf C;

	scanf("%d %d",&K,&N);

	C.setD(K);
	for (n = 0; n < N; n++)
		C.add(1,0);
	
	for (k = 1; k < K; k++)
	{
		scanf("%d",&N);
		for (n = 0; n < N; n++)
		{
			scanf("%d",&p);
			C.add(k+1,p);
		}
	}
	
#ifdef DEBUG
		C.print();
#endif
	printf("%d\n",C.ret());
#ifdef DEBUG
		C.print();
#endif

	return 0;
}