| Task: | Monotonic |
| Sender: | Karhukopla |
| Submission time: | 2018-05-26 14:17:06 +0300 |
| Language: | C++ |
| Status: | READY |
| Result: | WRONG ANSWER |
| test | verdict | time | |
|---|---|---|---|
| #1 | ACCEPTED | 0.01 s | details |
| #2 | ACCEPTED | 0.01 s | details |
| #3 | WRONG ANSWER | 0.01 s | details |
| #4 | ACCEPTED | 0.02 s | details |
| #5 | ACCEPTED | 0.01 s | details |
| #6 | WRONG ANSWER | 0.01 s | details |
| #7 | WRONG ANSWER | 0.01 s | details |
| #8 | WRONG ANSWER | 0.01 s | details |
| #9 | ACCEPTED | 0.01 s | details |
| #10 | ACCEPTED | 0.01 s | details |
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;
bool sr = true;
for (int i = 0; i < n; i++) {
if (i) sr &= t[i] > t[i - 1];
}
while (!sr) {
ans++;
for (int i = 0; i < m; i++) {
if (t[p[i].F] > t[p[i].S]) swap(t[p[i].F], t[p[i].S]);
}
sr = true;
for (int i = 1; i < n; i++) {
if (i) sr &= t[i] > t[i - 1];
}
if (ans == n * n) return -1;
}
return ans;
}
int main () {
ll t; cin >> t;
while(t--) cout << solve() << "\n";
}
/**
AAU
YBA
BTY
*/Test details
Test 1
Verdict: ACCEPTED
| input |
|---|
| 3 4 4 1 2 3 4 1 2 ... |
| correct output |
|---|
| -1 3 1 |
| user output |
|---|
| -1 3 1 |
Test 2
Verdict: ACCEPTED
| input |
|---|
| 10 15 200 1 14 2 6 3 14 ... |
| correct output |
|---|
| -1 -1 -1 -1 -1 ... |
| user output |
|---|
| -1 -1 -1 -1 -1 ... |
Test 3
Verdict: WRONG ANSWER
| input |
|---|
| 10 15 350 1 14 2 6 3 14 ... |
| correct output |
|---|
| 3 -1 2 -1 1 ... |
| user output |
|---|
| 2 1 1 -1 1 ... |
Test 4
Verdict: ACCEPTED
| input |
|---|
| 10 15 1500 1 14 2 6 3 14 ... |
| correct output |
|---|
| 1 1 1 1 1 ... |
| user output |
|---|
| 1 1 1 1 1 ... |
Test 5
Verdict: ACCEPTED
| input |
|---|
| 10 15 100 4 10 3 9 6 15 ... |
| correct output |
|---|
| -1 -1 -1 -1 -1 ... |
| user output |
|---|
| -1 -1 -1 -1 -1 ... |
Test 6
Verdict: WRONG ANSWER
| input |
|---|
| 10 15 200 4 5 2 12 7 8 ... |
| correct output |
|---|
| -1 -1 -1 -1 -1 ... |
| user output |
|---|
| -1 -1 2 -1 -1 ... |
Test 7
Verdict: WRONG ANSWER
| input |
|---|
| 10 15 300 5 10 6 12 12 13 ... |
| correct output |
|---|
| -1 -1 2 2 -1 ... |
| user output |
|---|
| 2 -1 1 2 -1 ... |
Test 8
Verdict: WRONG ANSWER
| input |
|---|
| 10 15 400 10 13 2 14 8 13 ... |
| correct output |
|---|
| -1 1 1 -1 1 ... |
| user output |
|---|
| 1 1 1 -1 1 ... |
Test 9
Verdict: ACCEPTED
| input |
|---|
| 10 15 14 14 15 11 12 1 2 ... |
| correct output |
|---|
| 8 7 4 4 3 ... |
| user output |
|---|
| 8 7 4 4 3 ... |
Test 10
Verdict: ACCEPTED
| input |
|---|
| 10 15 14 1 2 2 3 3 4 ... |
| correct output |
|---|
| 14 7 5 4 3 ... |
| user output |
|---|
| 14 7 5 4 3 ... |
