# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
73946 | 2018-08-29T10:13:21 Z | Batmend4 | Simurgh (IOI17_simurgh) | C++ | 3 ms | 500 KB |
#include "simurgh.h" #include<bits/stdc++.h> using namespace std; vector<int> find_roads(int n, vector<int> u, vector<int> v) { vector<int> motherfickinggoldenroads; map<int, bool> usedh; vector< pair<int, int> > ed[n]; for( int i = 0 ; i < u.size() ; i++ ){ ed[u[i]].push_back(make_pair( v[i], i) ); ed[v[i]].push_back(make_pair( u[i], i) ); } for( int i = 0 ; i < n ; i++ ){ vector<int> ct; int pos = 0; int used[n]; memset(used, -1, sizeof used); used[i] = 1000000007; for( int j = 0 ; j < n ; j++ ){ if( used[j] != -1 ) continue; queue< int >q; q.push(j); used[j] = pos; while( !q.empty()){ int x = q.front(); q.pop(); for( int i = 0 ; i < ed[x].size() ; i++ ){ if( used[ed[x][i].first] != -1 ) continue; ct.push_back( ed[x][i].second ); used[ed[x][i].first] = pos; q.push( ed[x][i].first); } } pos++; } vector<int> edge[pos + 5]; vector<pair<int, int> > impo[pos + 5]; for( int j = 0 ; j < ed[i].size() ; j++ ){ edge[used[ed[i][j].first]].push_back(ed[i][j].second); } for( int j = 0 ; j < pos ; j++ ){ ct.push_back(edge[j][0]); } for( int j = 0 ; j < ed[i].size() ; j++ ){ if( ed[i][j].first > i && usedh[ed[i][j].second] != 1 ) continue; ct[n - 2 - (pos - 1) + used[ed[i][j].first]] = ed[i][j].second; impo[used[ed[i][j].first]].push_back(make_pair(count_common_roads(ct), ed[i][j].second)); } for( int j = 0 ; j < pos ; j++ ){ sort( impo[j].begin(), impo[j].end() ); int si = impo[j].size(); int x = impo[j][si - 1].first; for( int ii = si - 1 ; ii >= 0 ; ii-- ){ if( impo[j][ii].first != x ) continue; motherfickinggoldenroads.push_back(impo[j][ii].second); } } } return motherfickinggoldenroads; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 3 ms | 376 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 3 ms | 376 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 3 ms | 376 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 3 ms | 500 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 3 ms | 376 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |