//Never stop trying
#include "citymapping.h"
#pragma GCC optimize("O3")
#include <bits/stdc++.h>
#include<ext/pb_ds/assoc_container.hpp>
#include<ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;
using namespace std;
template <typename T>
using ordered_set=tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;
//s.order_of_key(), *s.find_by_order()
using namespace std;
#define boost ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0)
typedef string str;
typedef long long ll;
//#define int ll
typedef double db;
typedef long double ld;
typedef pair<int,int> pi;
#define fi first
#define se second
typedef vector<int> vi;
typedef vector<ld> vd;
typedef vector<str> vs;
typedef vector<pi> vpi;
#define pb push_back
#define eb emplace_back
#define pf push_front
#define lb lower_bound
#define ub upper_bound
#define sz(x) (int)x.size()
#define all(x) begin(x), end(x)
#define rall(x) rbegin(x), rend(x)
#define endl "\n"
const int MOD = 1e9+7; //998244353
const ll INF = 1e18;
const int nx[4]={0,0,1,-1}, ny[4]={1,-1,0,0}; //right left down up
//int get_distance(int x, int y){ }
void find_roads(int N, int Q, int A[], int B[], int W[]){
if(Q==12000){
ll mx=0; int mxi;
for(int i=2; i<=N; i++){
ll x=get_distance(1,i);
if(x>mx){mx=x; mxi=i;}
}
vector<pair<ll,int>> vec;
vec.pb({0,mxi});
for(int i=1; i<=N; i++) if(i!=mxi){
ll x=get_distance(i,mxi);
vec.pb({x,i});
}
sort(all(vec));
for(int i=1; i<sz(vec); i++){
A[i-1]=vec[i].se; B[i-1]=vec[i-1].se; W[i-1]=(int)(vec[i].fi-vec[i-1].fi);
}
}
return;
}
Compilation message
citymapping.cpp: In function 'void find_roads(int, int, int*, int*, int*)':
citymapping.cpp:61:27: warning: 'mxi' may be used uninitialized in this function [-Wmaybe-uninitialized]
ll x=get_distance(i,mxi);
~~~~~~~~~~~~^~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
5 ms |
512 KB |
Reported list of edges differ from actual. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
5 ms |
512 KB |
Reported list of edges differ from actual. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
6 ms |
512 KB |
Correct: 1980 out of 12000 queries used. |
2 |
Correct |
6 ms |
512 KB |
Correct: 1984 out of 12000 queries used. |
3 |
Correct |
6 ms |
512 KB |
Correct: 1998 out of 12000 queries used. |
4 |
Correct |
5 ms |
512 KB |
Correct: 1984 out of 12000 queries used. |
5 |
Correct |
6 ms |
512 KB |
Correct: 1980 out of 12000 queries used. |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
6 ms |
512 KB |
Correct: 1980 out of 12000 queries used. |
2 |
Correct |
6 ms |
512 KB |
Correct: 1984 out of 12000 queries used. |
3 |
Correct |
6 ms |
512 KB |
Correct: 1998 out of 12000 queries used. |
4 |
Correct |
5 ms |
512 KB |
Correct: 1984 out of 12000 queries used. |
5 |
Correct |
6 ms |
512 KB |
Correct: 1980 out of 12000 queries used. |
6 |
Correct |
6 ms |
512 KB |
Correct: 1994 out of 12000 queries used. |
7 |
Correct |
7 ms |
568 KB |
Correct: 1990 out of 12000 queries used. |
8 |
Correct |
6 ms |
512 KB |
Correct: 1998 out of 12000 queries used. |
9 |
Correct |
6 ms |
512 KB |
Correct: 1992 out of 12000 queries used. |
10 |
Correct |
6 ms |
512 KB |
Correct: 1986 out of 12000 queries used. |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
5 ms |
512 KB |
Reported list of edges differ from actual. |
2 |
Halted |
0 ms |
0 KB |
- |