CSES - HIIT Open 2018 - Results
Submission details
Task:Euclidean Geometry
Sender:Karhukopla
Submission time:2018-05-26 15:35:37 +0300
Language:C++
Status:READY
Result:
Test results
testverdicttime
#10.01 sdetails
#20.01 sdetails
#30.01 sdetails
#40.01 sdetails
#50.45 sdetails
#60.00 sdetails
#70.02 sdetails
#80.02 sdetails

Code

#include <bits/stdc++.h>
#define ll long long
#define lll __int128
#define pii pair<int, int>
#define M 1000000007
#define N 101
#define PB push_back
#define F first
#define S second
using namespace std;
int solve() {
int n, m;
cin>>n>>m;
pii p[m];
for (int i = 0; i < m; i++) cin>>p[i].F>>p[i].S, p[i].F--, p[i].S--;
vector<int> t;
for (int i = 0; i < n; i++) t.push_back(n - i);
int ans = 0;
for (int tt = 0; tt < 50; tt++) {
for (int sh = 0; sh < n; sh++) {
vector<int> c(n);
bool sr = true;
for (int i = 0; i < n; i++) {
if (i) sr &= t[(i + sh) % n] > t[(i + sh - 1 + n) % n];
c[i] = t[(i + sh) % n];
}
int op = 0;
while (!sr) {
op++;
for (int i = 0; i < m; i++) {
if (c[p[i].F] > c[p[i].S]) swap(c[p[i].F], c[p[i].S]);
}
sr = true;
for (int i = 1; i < n; i++) {
if (i) sr &= c[i] > c[i - 1];
}
if (op == n) return -1;
}
ans = max(op, ans);
}
random_shuffle(t.begin(), t.end());
}
return ans;
}
int main () {
cin.sync_with_stdio(false);
cin.tie(0);
ll t; cin >> t;
while(t--) cout << solve() << "\n";
}

Test details

Test 1

Verdict:

input
100
000000000000000000000000000000...

correct output
3
3
3
3
4
...

user output
(empty)

Test 2

Verdict:

input
100
000000000000000000000000000000...

correct output
3
4
4
4
3
...

user output
(empty)

Test 3

Verdict:

input
100
000000000000000000000000000000...

correct output
3
3
3
3
4
...

user output
(empty)

Test 4

Verdict:

input
100
000000000000000000000000000000...

correct output
3
3
3
4
3
...

user output
(empty)

Test 5

Verdict:

input
100
000000000000000000000000000000...

correct output
3
4
3
3
4
...

user output
(empty)

Test 6

Verdict:

input
100
000000000000000000000000000000...

correct output
4
3
4
4
4
...

user output
(empty)

Test 7

Verdict:

input
100
000000000000000000000000000000...

correct output
4
4
3
3
3
...

user output
(empty)

Test 8

Verdict:

input
100
000000000000000000000000000000...

correct output
3
3
3
3
3
...

user output
(empty)