#include "bits/stdc++.h" using namespace std; using ll = long long; using P = pair; const ll INF = (1LL << 61); ll mod = (ll)1e9 + 7; struct mint { ll x; // typedef long long ll; mint(ll x = 0) :x((x%mod + mod) % mod) {} mint operator-() const { return mint(-x); } mint& operator+=(const mint a) { if ((x += a.x) >= mod) x -= mod; return *this; } mint& operator-=(const mint a) { if ((x += mod - a.x) >= mod) x -= mod; return *this; } mint& operator*=(const mint a) { (x *= a.x) %= mod; return *this; } mint operator+(const mint a) const { mint res(*this); return res += a; } mint operator-(const mint a) const { mint res(*this); return res -= a; } mint operator*(const mint a) const { mint res(*this); return res *= a; } mint pow(ll t) const { if (!t) return 1; mint a = pow(t >> 1); a *= a; if (t & 1) a *= *this; return a; } // for prime mod mint inv() const { return pow(mod - 2); } mint& operator/=(const mint a) { return (*this) *= a.inv(); } mint operator/(const mint a) const { mint res(*this); return res /= a; } }; istream& operator>>(istream& is, mint& a) { return is >> a.x; } ostream& operator<<(ostream& os, const mint& a) { return os << a.x; } struct Edge { ll to; }; using Graph = vector>; /* topo_sort(G): グラフG をトポロジカルソート 返り値: トポロジカルソートされた頂点番号 計算量: O(|E|+|V|) */ vector topo_sort(const Graph &G) { // bfs vector ans; int n = (int)G.size(); vector ind(n); // ind[i]: 頂点iに入る辺の数(次数) for (int i = 0; i < n; i++) { // 次数を数えておく for (auto e : G[i]) { ind[e.to]++; } } queue que; for (int i = 0; i < n; i++) { // 次数が0の点をキューに入れる if (ind[i] == 0) { que.push(i); } } while (!que.empty()) { // 幅優先探索 int now = que.front(); ans.push_back(now); que.pop(); for (auto e : G[now]) { ind[e.to]--; if (ind[e.to] == 0) { que.push(e.to); } } } return ans; } mint dp[100010]; vector

graph[100010]; void dfs(int v) { for (auto nv : graph[v]) { dp[nv.first] += dp[v] * nv.second; dfs(nv.first); } } signed main() { ios::sync_with_stdio(false); cin.tie(0); ll N, M; cin >> N >> M; Graph G(N+1); for (int i = 0; i < M; i++) { ll u, v, l, a; cin >> u >> v >> l >> a; G[u].push_back({v}); graph[u].push_back({ v, (l * a)%mod }); } auto ans = topo_sort(G); if (ans.size() != N + 1) { cout << "INF" << endl; return 0; } dp[ans[0]] = 1; dfs(0); cout << dp[N] << endl; return 0; }