#include using namespace std; using ll = long long; using P = pair; #define rep(i, a, b) for(ll i = a; i < b; ++i) #define rrep(i, a, b) for(ll i = a; i >= b; --i) constexpr ll inf = 4e18; struct SetupIO { SetupIO() { ios::sync_with_stdio(0); cin.tie(0); cout << fixed << setprecision(30); } } setup_io; template struct Edge { int from, to; T cost; int idx; Edge() : from(-1), to(-1), cost(-1), idx(-1) {} Edge(int from, int to, T cost = 1, int idx = -1) : from(from), to(to), cost(cost), idx(idx) {} operator int() const { return to; } }; template struct Graph { Graph(int N) : n(N), es(0), g(N) {} int size() const { return n; } int edge_size() const { return es; } void add_edge(int from, int to, T cost = 1) { assert(0 <= from and from < n); assert(0 <= to and to < n); g[from].emplace_back(from, to, cost, es); g[to].emplace_back(to, from, cost, es++); } void add_directed_edge(int from, int to, T cost = 1) { assert(0 <= from and from < n); assert(0 <= to and to < n); g[from].emplace_back(from, to, cost, es++); } inline vector>& operator[](const int& k) { assert(0 <= k and k < n); return g[k]; } inline const vector>& operator[](const int& k) const { assert(0 <= k and k < n); return g[k]; } private: int n, es; vector>> g; }; template using Edges = vector>; struct UnionFind { UnionFind(int N) : n(N), data(N, -1) {} int merge(int a, int b) { assert(0 <= a and a < n); assert(0 <= b and b < n); int x = leader(a), y = leader(b); if(x == y) return x; if(-data[x] < -data[y]) swap(x, y); data[x] += data[y]; data[y] = x; return x; } bool same(int a, int b) { assert(0 <= a and a < n); assert(0 <= b and b < n); return leader(a) == leader(b); } int leader(int a) { assert(0 <= a and a < n); if(data[a] < 0) return a; return data[a] = leader(data[a]); } int size(int a) { assert(0 <= a and a < n); return -data[leader(a)]; } vector> groups() { vector leader_buf(n), group_size(n); for(int i = 0; i < n; ++i) { leader_buf[i] = leader(i); ++group_size[leader_buf[i]]; } vector> result(n); for(int i = 0; i < n; ++i) { result[i].reserve(group_size[i]); } for(int i = 0; i < n; ++i) { result[leader_buf[i]].push_back(i); } result.erase(remove_if(result.begin(), result.end(), [&](const vector& v) { return v.empty(); }), result.end()); return result; } private: int n; vector data; }; int main(void) { int n, m, q; cin >> n >> m >> q; UnionFind uf(7 * n); vector s(n); rep(i, 0, n) { cin >> s[i]; rep(j, 0, 7) { if(s[i][j] == '1' and s[i][(j + 1) % 7] == '1') { uf.merge(7 * i + j, 7 * i + (j + 1) % 7); } } } Graph g(n); rep(i, 0, m) { int u, v; cin >> u >> v; u--; v--; g.add_edge(u, v); rep(j, 0, 7) { if(s[u][j] == '1' and s[v][j] == '1') { uf.merge(7 * u + j, 7 * v + j); } } } while(q--) { int t, x, y; cin >> t >> x >> y; x--; y--; if(t == 1) { s[x][y] = '1'; if(s[x][(y + 6) % 7] == '1') { uf.merge(7 * x + (y + 6) % 7, 7 * x + y); } if(s[x][(y + 1) % 7] == '1') { uf.merge(7 * x + y, 7 * x + (y + 1) % 7); } for(int to : g[x]) { if(s[to][y] == '1') { uf.merge(7 * x + y, 7 * to + y); } } } else { cout << uf.size(7 * x) << '\n'; } } }