#include #pragma GCC optimize("Ofast") #define _GLIBCXX_DEBUG using namespace std; using std::cout; using std::cin; using std::endl; using ll=long long; using ld=long double; ll ILL=1167167167167167167; const int INF=2100000000; ll mod=1e9+7; #define rep(i,a) for (ll i=0;i using _pq = priority_queue, greater>; template ll LB(vector &v,T a){return lower_bound(v.begin(),v.end(),a)-v.begin();} template ll UB(vector &v,T a){return upper_bound(v.begin(),v.end(),a)-v.begin();} template bool chmin(T &a,const T &b){if(a>b){a=b;return 1;}else return 0;} template bool chmax(T &a,const T &b){if(a void So(vector &v) {sort(v.begin(),v.end());} template void Sore(vector &v) {sort(v.begin(),v.end(),[](T x,T y){return x>y;});} void yneos(bool a){if(a) cout<<"Yes\n"; else cout<<"No\n";} namespace po167{ struct UFtree { std::vector wei; int component; UFtree(int n):par(n),wei(n),component(n){ for(int i=0;i par; }; } using po167::UFtree; // rainy ~ 雨に打たれて ~ int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int H,W,N; cin>>H>>W>>N; UFtree T=(H*W); int ans=0; vector> p(N); vector> q(H,vector(W)); rep(i,H) rep(j,W){ int a; cin>>a; a--; p[a].push_back(i*W+j); q[i][j]=a; } rep(i,H-1) rep(j,W){ if(q[i][j]==q[i+1][j]) T.unite(i*W+j,i*W+j+H); } rep(i,H) rep(j,W-1){ if(q[i][j]==q[i][j+1]) T.unite(i*W+j,i*W+j+1); } vector dx={1,-1,0,0},dy={0,0,1,-1}; rep(i,N){ for(auto a:p[i]){ int x=a/W,y=a%W; rep(k,4){ int s=x+dx[k],t=y+dy[k]; if(s<0||H==s||t<0||t==W) continue; if(q[s][t]