#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define pb push_back
#define mk make_pair
#define F first
#define S second
int n, m, flag = true;
vector < int > u, v, w;
vector < int > vc[2000045];
pair < int , pair< int, int > > p[2000045];
int parent[2000045];
int get( ll x ){
if( parent[x] == x )
return x;
parent[x] = get( parent[x] );
}
void init(int N, int M,
std::vector<int> U, std::vector<int> V, std::vector<int> W) {
int i;
n = N;m = M;u = U;v = V;w = W;
for( i = 0; i < m; i ++ ){
p[i].second.F=u[i];
p[i].second.S=v[i];
p[i].first=w[i];
}
sort( p, p + m );
for( i = 1; i <= n; i ++ ){
parent[i] = i;
}
}
int getMinimumFuelCapacity(int X, int Y) {
map < int, int > mp;
int i;
flag = false;
mp.clear();
for( i = 1; i <= n; i ++ ){
parent[i] = i;
}
for( i = 0; i < n; i ++ )
vc[i].clear();
for( i = 0; i < m; i ++ ){
int x = get( p[i].second.F );
int y = get( p[i].second.S );
if( x != y ){
parent[y] = x;
}
vc[ p[i].second.F ].pb( p[i].second.S );
vc[ p[i].second.S ].pb( p[i].second.F );
mp[p[i].second.F] = 1;
mp[ p[i].second.S ] = 1;
if( vc[ p[i].S.F ].size() == 3 || vc[p[i].S.S].size() == 3 ){
flag = true;
}
if( mp.size() == i+1 && mp[X] == mp[Y] && mp[X] == 1 && parent[x] == parent[y] ){
return p[i].first;
}
if( mp[X] == mp[Y] && mp[X] == 1 && flag == true && parent[x] == parent[y] )
return p[i].first;
}
return -1;
}
Compilation message
swap.cpp: In function 'int getMinimumFuelCapacity(int, int)':
swap.cpp:55:17: warning: comparison of integer expressions of different signedness: 'std::map<int, int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
55 | if( mp.size() == i+1 && mp[X] == mp[Y] && mp[X] == 1 && parent[x] == parent[y] ){
| ~~~~~~~~~~^~~~~~
swap.cpp: In function 'int get(long long int)':
swap.cpp:16:12: warning: control reaches end of non-void function [-Wreturn-type]
16 | parent[x] = get( parent[x] );
| ~~~~~~~~~~^~~~~~~~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
29 ms |
47172 KB |
Output is correct |
2 |
Correct |
29 ms |
47264 KB |
Output is correct |
3 |
Runtime error |
73 ms |
95664 KB |
Execution killed with signal 6 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
29 ms |
47172 KB |
Output is correct |
2 |
Correct |
29 ms |
47264 KB |
Output is correct |
3 |
Execution timed out |
2076 ms |
60996 KB |
Time limit exceeded |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
29 ms |
47172 KB |
Output is correct |
2 |
Correct |
29 ms |
47264 KB |
Output is correct |
3 |
Runtime error |
73 ms |
95664 KB |
Execution killed with signal 6 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
29 ms |
47172 KB |
Output is correct |
2 |
Correct |
29 ms |
47264 KB |
Output is correct |
3 |
Runtime error |
73 ms |
95664 KB |
Execution killed with signal 6 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
29 ms |
47172 KB |
Output is correct |
2 |
Correct |
29 ms |
47264 KB |
Output is correct |
3 |
Runtime error |
73 ms |
95664 KB |
Execution killed with signal 6 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
29 ms |
47172 KB |
Output is correct |
2 |
Correct |
29 ms |
47264 KB |
Output is correct |
3 |
Runtime error |
73 ms |
95664 KB |
Execution killed with signal 6 |
4 |
Halted |
0 ms |
0 KB |
- |