Submission #1107891

#TimeUsernameProblemLanguageResultExecution timeMemory
11078910pt1mus23Tracks in the Snow (BOI13_tracks)C++14
91.25 / 100
2107 ms778960 KiB
#include <bits/stdc++.h> using namespace std; #define int long long int #define ins insert #define pb push_back #define endl '\n' #define putr(x) cout<<x<<endl;return; #define all(x) x.begin(),x.end() const int mod = 1e9 +7, sze = 1e5 +5, inf = INT_MAX, LL = 30; struct custom_hash { static uint64_t splitmix64(uint64_t x) { x += 0x9e3779b97f4a7c15; x = (x ^ (x >> 30)) * 0xbf58476d1ce4e5b9; x = (x ^ (x >> 27)) * 0x94d049bb133111eb; return x ^ (x >> 31); } size_t operator()(uint64_t x) const { static const uint64_t FIXED_RANDOM = chrono::steady_clock::now().time_since_epoch().count(); return splitmix64(x + FIXED_RANDOM); } }; int comp[4005][4005]; unordered_map<int,unordered_map<int,int>,custom_hash > edg; const int dx[4] = {-1,1,0,0}; const int dy[4] = {0,0,-1,1}; void rush(){ int n,m; cin>>n>>m; vector<vector<char>> arr(n,vector<char>(m)); for(int i=0;i<n;i++){ for(int j=0;j<m;j++){ comp[i][j]=-1; cin>>arr[i][j]; } } int ct = 0; int u,v,a,b; for(int i=0;i<n;i++){ for(int j=0;j<m;j++){ if(arr[i][j]!='.' && comp[i][j]==-1){ queue<pair<int,int>> q; q.push({i,j}); comp[i][j]=ct; while(!q.empty()){ pair<int,int> node = q.front();q.pop(); for(int x=0;x<4;x++){ a = node.first + dx[x]; b = node.second + dy[x]; if(a>=0 && a<n && b>=0 && b<m && comp[a][b]==-1 && arr[a][b]==arr[i][j]){ comp[a][b]=ct; q.push({a,b}); } } } ct++; } } } vector<int> graph[ct]; for(int i =0;i<n;i++){ for(int j=0;j<m;j++){ if(comp[i][j]!=-1){ for(int x= 0; x<4;x++){ a = i + dx[x]; b = j + dy[x]; if(a>=0 && a<n && b>=0 && b<m && comp[a][b] !=-1 && comp[a][b]!=comp[i][j]){ u = min(comp[i][j],comp[a][b]); v =max(comp[i][j],comp[a][b]); if(edg[u][v]==0 ){ edg[u][v]=1; graph[u].pb(v); graph[v].pb(u); } } } } } } int ans=0; queue<pair<int,int>> q; vector<int> used(ct,0); q.push({0,1}); used[0]=1; while(!q.empty()){ auto node = q.front(); ans=max(ans,node.second); q.pop(); for(auto v:graph[node.first]){ if(!used[v]){ used[v]=1; q.push({v,node.second+1}); } } } putr(ans); } signed main(){ ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); int tt = 1; // cin>>tt; while(tt--){ rush(); } return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...