#include using namespace std; #define int long long templatebool chmax(T &a, const T &b) { if (a= (1<> N >> M; for (int i = 0; i < M; i++) { int a, b, c; cin >> a >> b >> c; item[a][b] = c; } fill(dp, dp+(1<<9), -1); int ans = rec(0); cout << ans << endl; return 0; }