# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
340984 | 2020-12-28T20:40:42 Z | pggp | 고대 책들 (IOI17_books) | C++14 | 1 ms | 364 KB |
#include <bits/stdc++.h> using namespace std; bool used[1000000]; vector < int > P; int N; int cur_cycle; int cycle[1000000]; vector < vector < int > > cycs; vector < int > l_cyc, r_cyc; long long ans = 0; void dfs(int vertex){ cycle[vertex] = cur_cycle; cycs[cur_cycle].push_back(vertex); used[vertex] = true; ans += abs(vertex - P[vertex]); if(!used[P[vertex]]){ dfs(P[vertex]); } } long long minimum_walk(vector < int > p, int s){ N = p.size(); P = p; cur_cycle = 0; for (int i = 0; i < N; ++i) { if(!used[i]){ vector < int > v; cycs.push_back(v); dfs(i); cur_cycle++; } } vector < pair < int, int > > f; for (int i = 0; i < cycs.size(); ++i) { int l_cyc = 1000000; int r_cyc = 0; for(int v : cycs[i]){ l_cyc = min(l_cyc, v); r_cyc = max(r_cyc, v); } f.push_back(make_pair(l_cyc, r_cyc)); } sort(f.begin(), f.end()); int components = 1; int max_r = f[0].second; for (int i = 1; i < f.size(); ++i) { if(f[i].first > max_r){ components++; } max_r = max(max_r, f[i].second); } if(components > 1){ ans += components; } return ans; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 364 KB | Output is correct |
2 | Correct | 0 ms | 364 KB | Output is correct |
3 | Correct | 1 ms | 364 KB | Output is correct |
4 | Correct | 1 ms | 364 KB | Output is correct |
5 | Incorrect | 1 ms | 364 KB | 3rd lines differ - on the 1st token, expected: '4', found: '6' |
6 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 364 KB | Output is correct |
2 | Correct | 0 ms | 364 KB | Output is correct |
3 | Correct | 1 ms | 364 KB | Output is correct |
4 | Correct | 1 ms | 364 KB | Output is correct |
5 | Incorrect | 1 ms | 364 KB | 3rd lines differ - on the 1st token, expected: '4', found: '6' |
6 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 364 KB | Output is correct |
2 | Correct | 0 ms | 364 KB | Output is correct |
3 | Correct | 1 ms | 364 KB | Output is correct |
4 | Correct | 1 ms | 364 KB | Output is correct |
5 | Incorrect | 1 ms | 364 KB | 3rd lines differ - on the 1st token, expected: '4', found: '6' |
6 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 364 KB | 3rd lines differ - on the 1st token, expected: '3304', found: '2744' |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 364 KB | Output is correct |
2 | Correct | 0 ms | 364 KB | Output is correct |
3 | Correct | 1 ms | 364 KB | Output is correct |
4 | Correct | 1 ms | 364 KB | Output is correct |
5 | Incorrect | 1 ms | 364 KB | 3rd lines differ - on the 1st token, expected: '4', found: '6' |
6 | Halted | 0 ms | 0 KB | - |