Educational Codeforces Round 84 (Rated for Div. 2) - Codeforces1327 B. Princesses and Princes - 暴力水题

B. Princesses and Princes

time limit per test :2 seconds                                memory limit per test :256 megabytes

input :standard input                                         output :standard output
 

The King of Berland Polycarp LXXXIV has nn daughters. To establish his power to the neighbouring kingdoms he wants to marry his daughters to the princes of these kingdoms. As a lucky coincidence there are nn other kingdoms as well.

So Polycarp LXXXIV has enumerated his daughters from 1 to n and the kingdoms from 1 to n. For each daughter he has compiled a list of kingdoms princes of which she wanted to marry.

Polycarp LXXXIV is very busy, so he finds a couple for his daughters greedily one after another.

For the first daughter he takes the kingdom with the lowest number from her list and marries the daughter to their prince. For the second daughter he takes the kingdom with the lowest number from her list, prince of which hasn't been taken already. If there are no free princes in the list then the daughter marries nobody and Polycarp LXXXIV proceeds to the next daughter. The process ends after the n-th daughter.

For example, let there be 4 daughters and kingdoms, the lists daughters have are [2,3], [1,2], [3,4], [3], respectively.

In that case daughter 1 marries the prince of kingdom 2, daughter 2 marries the prince of kingdom 1, daughter 3 marries the prince of kingdom 3, leaving daughter 4 nobody to marry to.

Actually, before starting the marriage process Polycarp LXXXIV has the time to convince one of his daughters that some prince is also worth marrying to. Effectively, that means that he can add exactly one kingdom to exactly one of his daughter's list. Note that this kingdom should not be present in the daughter's list.

Polycarp LXXXIV wants to increase the number of married couples.

Unfortunately, what he doesn't have the time for is determining what entry to add. If there is no way to increase the total number of married couples then output that the marriages are already optimal. Otherwise, find such an entry that the total number of married couples increases if Polycarp LXXXIV adds it.

If there are multiple ways to add an entry so that the total number of married couples increases then print any of them.

For your and our convenience you are asked to answer t independent test cases.

Input

The first line contains a single integer t(1\leqslant t \leqslant 10^5) — the number of test cases.

Then t test cases follow.

The first line of each test case contains a single integer n (1\leqslant n\leqslant 10^5) — the number of daughters and the number of kingdoms.

Each of the next n lines contains the description of each daughter's list. The first integer k (0≤k≤n) is the number of entries in the i-th daughter's list. After that k distinct integers follow gi[1],gi[2],…,gi[k] (1≤gi[j]≤n) — the indices of the kingdoms in the list in the increasing order (gi[1]<gi[2]<⋯<gi[k]).

It's guaranteed that the total number of daughters over all test cases does not exceed 10^5.

It's also guaranteed that the total number of kingdoms in lists over all test cases does not exceed 10^5.

Output

For each test case print the answer to it.

Print "IMPROVE" in the first line if Polycarp LXXXIV can add some kingdom to some of his daughter's list so that the total number of married couples increases. The second line then should contain two integers — the index of the daughter and the index of the kingdom Polycarp LXXXIV should add to that daughter's list.

If there are multiple ways to add an entry so that the total number of married couples increases then print any of them.

Otherwise the only line should contain one word "OPTIMAL".

Example

input

5
4
2 2 3
2 1 2
2 3 4
1 3
2
0
0
3
3 1 2 3
3 1 2 3
3 1 2 3
1
1 1
4
1 1
1 2
1 3
1 4

output

IMPROVE
4 4
IMPROVE
1 1
OPTIMAL
OPTIMAL
OPTIMAL

Note

The first test case is depicted in the statement. Adding the fourth kingdom to the list of the fourth daughter makes her marry the prince of the fourth kingdom.

In the second test case any new entry will increase the number of marriages from 0 to 1.

In the third and the fourth test cases there is no way to add an entry.

In the fifth test case there is no way to change the marriages by adding any entry.

题目大意

有n个公主,n个王子,每个公主有k个中意的王子(每个公主的k不一定相同),问有没有办法增加公主与王子匹配的个数,有就输出“IMPROVE”,以及新增匹配的下标,没有输出“OPTIMAL”(注意不是二分图匹配的规则,每个公主选择中意名单里靠前且还没被选择的王子)

思路

暴力搞就完事,用两个数组分别标记公主是否有选到,王子是否有被选,如果i公主没有选到,j王子没有被选,输出i和j(题目只要能增加就行,所以只要一对)(两者都没有配偶,那么显然王子肯定不在公主名单里,满足题意)

代码

#include <cstdio>
#include <iostream>
#include <algorithm>
#include <cstring>
#include <cmath>
#include <vector>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
const int N = 1e5 + 10;
vector<int> g[N];
int match[N], vis[N];
int main()
{
    int t;
    cin >> t;
    while (t --){
        int n;
        scanf("%d", &n);
        int tmp, num;
        for (int i = 1; i <= n; ++i) match[i] = 0, vis[i] = 0;
        for (int i = 1; i <= n; ++i){
            scanf("%d", &num);
            g[i].clear();
            while (num --){
                scanf("%d", &tmp);
                g[i].push_back(tmp);
            }
            for (int j = 0; j < g[i].size(); ++j){
                if (!match[g[i][j]]){
                    match[g[i][j]] = 1;
                    vis[i] = 1;
                    break;
                }
            }
        }
        int ans1 = 0, ans2 = 0;
        for (int i = 1; i <= n; ++ i){
            if (!vis[i]) {
                ans1 = i;
                break;
            }
        }
        for (int i = 1; i <= n; ++ i){
            if (!match[i]){
                ans2  = i;
                break;
            }
        }
        if (ans1 == 0 || ans2 == 0)printf("OPTIMAL\n");
        else {
            printf("IMPROVE\n");
            printf("%d %d\n", ans1, ans2);
        }
    }
    return 0;
}
发布了21 篇原创文章 · 获赞 0 · 访问量 818

猜你喜欢

转载自blog.csdn.net/tourist1412/article/details/105076104