import std.stdio, std.array, std.string, std.conv, std.algorithm; import std.typecons, std.range, std.random, std.math, std.container; import std.numeric, std.bigint, core.bitop; immutable long MOD = 998244353; void main() { auto s = readln.split.map!(to!int); auto N = s[0]; auto K = s[1]; auto A = new long[](N); auto M = new int[](N); auto B = new int[][](N); foreach (i; 0..N) { s = readln.split.map!(to!int); A[i] = s[0].to!long; M[i] = s[1]; auto C = readln.split.map!(to!int).array; C[] -= 1; foreach (c; C) B[c] ~= i; } auto dp = new long[][](N, 2); foreach (d; dp) d[1] = -(1L<<59); foreach (i; 0..N) { foreach (b; B[i]) { dp[b][0] = max(dp[b][0], dp[i][0] + A[b] - A[i]); // iで買ってbで交換して売る dp[b][0] = max(dp[b][0], dp[i][1] + A[b]); // 持ってる i をbで交換して売る dp[b][1] = max(dp[b][1], dp[i][0] - A[i]); // iで買ってbで交換して売らない dp[b][1] = max(dp[b][1], dp[i][1]); // 持ってるiをbで交換して売らない } if (i < N - 1) dp[i+1][0] = max(dp[i+1][0], dp[i][0]); } dp.map!(d => d.reduce!max).reduce!max.writeln; }