#include "books.h"
#include<iostream>
#include<vector>
#include<algorithm>
#include<queue>
#define ll long long
#define pi pair < ll,ll >
#define rep(i,a,b) for(int i = a;i < b;i++)
#define mp(a,b) make_pair(a,b)
#define N 1000003
#define INF 1e9+7
using namespace std;
vector < pi > graph[N];
int id[N];
bool vis[N];
ll abso(ll x)
{
return (x < 0) ? -x : x;
}
ll dijkstra_weight(int n,int source)
{
ll d[n];
ll w[n];
rep(i,0,n)
d[i] = INF;
d[source] = 0;
w[source]=0;
priority_queue < pi > pq;
pq.push(mp(0,source));
while(!pq.empty())
{
pi cur = pq.top();
pq.pop();
cur.first*=-1;
if(cur.first > d[cur.second])
continue;
rep(i,0,graph[cur.second].size())
{
int v = graph[cur.second][i].first;
ll wv = graph[cur.second][i].second;
// cout <<"in " << v << endl;
if(d[v] > cur.first + wv)
{
d[v]=cur.first+wv;
w[v]=wv;
pq.push(mp(-d[v],v));
}
}
}
ll res = 0;
rep(i,0,n)
{
res += w[i];
}
return 2*res;
}
int dsu[N];
vector < pair < pi,ll > > edges;
int f(int x)
{
if(dsu[x]==x)
return x;
return dsu[x]=f(dsu[x]);
}
bool issameset(int x,int y)
{
return f(x)==f(y);
}
void join(int x,int y)
{
dsu[f(x)]=f(y);
return;
}
ll mst_weight(int n,int source)
{
rep(i,0,n)
dsu[i]=i;
ll res = 0;
rep(i,0,edges.size())
{
int u = edges[i].first.first;
int v = edges[i].first.second;
ll w = edges[i].second;
if(!issameset(u,v))
{
join(u,v);
res+=2*w;
}
}
return res;
}
ll get_cycle_cost(vector < int > c)
{
if(c.size()==1)
return 0;
ll res = 0;
rep(i,1,c.size())
{
res += abso(c[i]-c[i-1]);
}
res += abso(c[0]-c[c.size()-1]);
return res;
}
ll get_distance(pi a,pi b)
{
return max((ll)0,max(a.first,b.first)-min(a.second,b.second));
}
void calculate_weights(int n,const vector < int > &p)
{
rep(i,0,n)
{
rep(j,i+1,n)
{
if(!vis[i] || !vis[j] || id[i] == id[j])
continue;
int dist = get_distance(mp(i,p[i]),mp(j,p[j]));
edges.push_back(mp(mp(id[i],id[j]),dist));
graph[id[i]].push_back(mp(id[j],dist));
graph[id[j]].push_back(mp(id[i],dist));
}
}
return;
}
long long minimum_walk(std::vector<int> p, int s) // for 1st sub
{
int n = p.size();
rep(i,0,n)
{
graph[i].clear();
vis[i]=false;
id[i] = -1;
}
vector < vector < int > > cycles;
ll ans = 0;
rep(i,0,n)
{
if(p[i] == i || vis[i])
continue;
int cur = i;
int ind = cycles.size();
cycles.push_back(vector < int > ());
while(!vis[cur])
{
id[cur] = ind;
vis[cur] = true;
cycles[ind].push_back(cur);
cur = p[cur];
}
ans += get_cycle_cost(cycles[ind]);
}
if(!vis[s])
{
vis[s]=true;
int ind = cycles.size();
cycles.push_back(vector < int > ());
cycles[ind].push_back(s);
id[s] = ind;
}
calculate_weights(n,p);
ans += mst_weight(cycles.size(),id[s]);
return ans;
}
Compilation message
books.cpp: In function 'long long int dijkstra_weight(int, int)':
books.cpp:8:36: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
8 | #define rep(i,a,b) for(int i = a;i < b;i++)
......
47 | rep(i,0,graph[cur.second].size())
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
books.cpp:47:9: note: in expansion of macro 'rep'
47 | rep(i,0,graph[cur.second].size())
| ^~~
books.cpp: In function 'long long int mst_weight(int, int)':
books.cpp:8:36: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<std::pair<long long int, long long int>, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
8 | #define rep(i,a,b) for(int i = a;i < b;i++)
......
98 | rep(i,0,edges.size())
| ~~~~~~~~~~~~~~~~
books.cpp:98:5: note: in expansion of macro 'rep'
98 | rep(i,0,edges.size())
| ^~~
books.cpp: In function 'long long int get_cycle_cost(std::vector<int>)':
books.cpp:8:36: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
8 | #define rep(i,a,b) for(int i = a;i < b;i++)
......
121 | rep(i,1,c.size())
| ~~~~~~~~~~~~
books.cpp:121:5: note: in expansion of macro 'rep'
121 | rep(i,1,c.size())
| ^~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
20 ms |
23756 KB |
Output is correct |
2 |
Correct |
19 ms |
23796 KB |
Output is correct |
3 |
Correct |
18 ms |
23756 KB |
Output is correct |
4 |
Correct |
16 ms |
23756 KB |
Output is correct |
5 |
Correct |
23 ms |
23756 KB |
Output is correct |
6 |
Correct |
20 ms |
23808 KB |
Output is correct |
7 |
Correct |
17 ms |
23756 KB |
Output is correct |
8 |
Correct |
16 ms |
23764 KB |
Output is correct |
9 |
Correct |
16 ms |
23756 KB |
Output is correct |
10 |
Correct |
16 ms |
23804 KB |
Output is correct |
11 |
Correct |
15 ms |
23756 KB |
Output is correct |
12 |
Correct |
15 ms |
23696 KB |
Output is correct |
13 |
Correct |
16 ms |
23756 KB |
Output is correct |
14 |
Correct |
19 ms |
23744 KB |
Output is correct |
15 |
Correct |
18 ms |
23796 KB |
Output is correct |
16 |
Correct |
18 ms |
23756 KB |
Output is correct |
17 |
Correct |
19 ms |
23756 KB |
Output is correct |
18 |
Correct |
16 ms |
23800 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
20 ms |
23756 KB |
Output is correct |
2 |
Correct |
19 ms |
23796 KB |
Output is correct |
3 |
Correct |
18 ms |
23756 KB |
Output is correct |
4 |
Correct |
16 ms |
23756 KB |
Output is correct |
5 |
Correct |
23 ms |
23756 KB |
Output is correct |
6 |
Correct |
20 ms |
23808 KB |
Output is correct |
7 |
Correct |
17 ms |
23756 KB |
Output is correct |
8 |
Correct |
16 ms |
23764 KB |
Output is correct |
9 |
Correct |
16 ms |
23756 KB |
Output is correct |
10 |
Correct |
16 ms |
23804 KB |
Output is correct |
11 |
Correct |
15 ms |
23756 KB |
Output is correct |
12 |
Correct |
15 ms |
23696 KB |
Output is correct |
13 |
Correct |
16 ms |
23756 KB |
Output is correct |
14 |
Correct |
19 ms |
23744 KB |
Output is correct |
15 |
Correct |
18 ms |
23796 KB |
Output is correct |
16 |
Correct |
18 ms |
23756 KB |
Output is correct |
17 |
Correct |
19 ms |
23756 KB |
Output is correct |
18 |
Correct |
16 ms |
23800 KB |
Output is correct |
19 |
Correct |
52 ms |
47412 KB |
Output is correct |
20 |
Correct |
45 ms |
45304 KB |
Output is correct |
21 |
Correct |
17 ms |
23756 KB |
Output is correct |
22 |
Incorrect |
26 ms |
30716 KB |
3rd lines differ - on the 1st token, expected: '2082', found: '193736' |
23 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
20 ms |
23756 KB |
Output is correct |
2 |
Correct |
19 ms |
23796 KB |
Output is correct |
3 |
Correct |
18 ms |
23756 KB |
Output is correct |
4 |
Correct |
16 ms |
23756 KB |
Output is correct |
5 |
Correct |
23 ms |
23756 KB |
Output is correct |
6 |
Correct |
20 ms |
23808 KB |
Output is correct |
7 |
Correct |
17 ms |
23756 KB |
Output is correct |
8 |
Correct |
16 ms |
23764 KB |
Output is correct |
9 |
Correct |
16 ms |
23756 KB |
Output is correct |
10 |
Correct |
16 ms |
23804 KB |
Output is correct |
11 |
Correct |
15 ms |
23756 KB |
Output is correct |
12 |
Correct |
15 ms |
23696 KB |
Output is correct |
13 |
Correct |
16 ms |
23756 KB |
Output is correct |
14 |
Correct |
19 ms |
23744 KB |
Output is correct |
15 |
Correct |
18 ms |
23796 KB |
Output is correct |
16 |
Correct |
18 ms |
23756 KB |
Output is correct |
17 |
Correct |
19 ms |
23756 KB |
Output is correct |
18 |
Correct |
16 ms |
23800 KB |
Output is correct |
19 |
Correct |
52 ms |
47412 KB |
Output is correct |
20 |
Correct |
45 ms |
45304 KB |
Output is correct |
21 |
Correct |
17 ms |
23756 KB |
Output is correct |
22 |
Incorrect |
26 ms |
30716 KB |
3rd lines differ - on the 1st token, expected: '2082', found: '193736' |
23 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
26 ms |
30460 KB |
3rd lines differ - on the 1st token, expected: '3304', found: '177070' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
20 ms |
23756 KB |
Output is correct |
2 |
Correct |
19 ms |
23796 KB |
Output is correct |
3 |
Correct |
18 ms |
23756 KB |
Output is correct |
4 |
Correct |
16 ms |
23756 KB |
Output is correct |
5 |
Correct |
23 ms |
23756 KB |
Output is correct |
6 |
Correct |
20 ms |
23808 KB |
Output is correct |
7 |
Correct |
17 ms |
23756 KB |
Output is correct |
8 |
Correct |
16 ms |
23764 KB |
Output is correct |
9 |
Correct |
16 ms |
23756 KB |
Output is correct |
10 |
Correct |
16 ms |
23804 KB |
Output is correct |
11 |
Correct |
15 ms |
23756 KB |
Output is correct |
12 |
Correct |
15 ms |
23696 KB |
Output is correct |
13 |
Correct |
16 ms |
23756 KB |
Output is correct |
14 |
Correct |
19 ms |
23744 KB |
Output is correct |
15 |
Correct |
18 ms |
23796 KB |
Output is correct |
16 |
Correct |
18 ms |
23756 KB |
Output is correct |
17 |
Correct |
19 ms |
23756 KB |
Output is correct |
18 |
Correct |
16 ms |
23800 KB |
Output is correct |
19 |
Correct |
52 ms |
47412 KB |
Output is correct |
20 |
Correct |
45 ms |
45304 KB |
Output is correct |
21 |
Correct |
17 ms |
23756 KB |
Output is correct |
22 |
Incorrect |
26 ms |
30716 KB |
3rd lines differ - on the 1st token, expected: '2082', found: '193736' |
23 |
Halted |
0 ms |
0 KB |
- |