시간 제한메모리 제한제출정답맞힌 사람정답 비율
5 초 512 MB15131285.714%

문제

ICP city has an express company whose trucks run from the crossing S to the crossing T. The president of the company is feeling upset because all the roads in the city are one-way, and are severely congested. So, he planned to improve the maximum flow (edge disjoint paths) from the crossing S to the crossing T by reversing the traffic direction on some of the roads.

Your task is writing a program to calculate the maximized flow from S to T by reversing some roads, and the list of the reversed roads.

입력

The first line of a data set contains two integers N (2≤N≤300) and M (0≤M≤min(1 000, N(N−1)⁄2)). N is the number of crossings in the city and M is the number of roads.

The following M lines describe one-way roads in the city. The i-th line (1-based) contains two integers Xi and Yi (1≤Xi,YiNXiYi). Xi is the ID number (1-based) of the starting point of the i-th road and Yi is that of the terminal point. The last line contains two integers S and T (1≤S,TNST1-based).

The capacity of each road is 1. You can assume that ij implies either XiXj or YiYj, and either XiYj or XjYi.

출력

In the first line, print the maximized flow by reversing some roads. In the second line, print the number R of the reversed roads. In each of the following R lines, print the ID number (1-based) of a reversed road. You may not print the same ID number more than once.

If there are multiple answers which would give us the same flow capacity, you can print any of them.

예제 입력 1

2 1
2 1
2 1

예제 출력 1

1
0

예제 입력 2

2 1
1 2
2 1

예제 출력 2

1
1
1

예제 입력 3

3 3
3 2
1 2
3 1
1 3

예제 출력 3

2
2
1
3