Constrained Tree

You need to find a binary tree of size n that satisfies a given set of c constraints. Suppose that the nodes of the unknown binary tree are labeled using a pre-order traversal starting with 1. For the i-th constraint you are given two labels, a i and b i and a direction, left or right. In case of left direction, b i is an element of the subtree rooted at a i‘s left child. Similarly in the case of right direction b i is an element of the subtree rooted at a i‘s right child.

Input

The first line of input contains two integers n and c. The next c lines contain 2 integers a ib i (1 ≤ a i, b i ≤ n) and either “LEFT” or “RIGHT” denoting whether b is in the subtree rooted at a i‘s left child or in the subtree rooted at a i‘s right child.

The problem consists of multiple subproblems. The subproblems have different constraints on the input. You will get some score for the correct submission of the subproblem. The description of the subproblems follows.

  • In subproblem D1 (9 points), the constraints 1 ≤ n ≤ 100, 1 ≤ c ≤ 50 will hold.
  • In subproblem D2 (8 points), the constraints 1 ≤ n ≤ 1000000, 1 ≤ c ≤ 100000 will hold.

Output

Output will be on a single line.

Any binary tree that satisfies the constraints will be accepted. The tree’s nodes should be printed out as n space separated labels representing an in-order traversal, using the pre-order numbers as labels of vertices.

If there are no trees that satisfy the constraints, print “IMPOSSIBLE” (without quotes).

Examples

input

3 2
1 2 LEFT
1 3 RIGHT

output

2 1 3

input

3 2
1 2 RIGHT
1 3 LEFT

output

IMPOSSIBLE

Note

Consider the first sample test. We need to find a tree with 3 nodes that satisfies the following two constraints. The node labeled 2 with pre-order traversal should be in the left subtree of the node labeled 1 with pre-order traversal; the node labeled 3 with pre-order traversal should be in the right subtree of the node labeled 1. There is only one tree with three nodes that satisfies these constraints and its in-order traversal is (2, 1, 3).

Pre-order is the “root – left subtree – right subtree” order. In-order is the “left subtree – root – right subtree” order.

For other information regarding in-order and pre-order, see http://en.wikipedia.org/wiki/Tree_traversal.

Solution:

#include <cstring>
#include <vector>
#include  	<list>
#include

<map>
#include <set>
#include <deque>
#include <stack>
#include <bitset>
#include <algorithm>
#include <functional>
#include <numeric>
#include <utility>
#include <sstream>
#include <iostream>
#include <iomanip>
#include <cstdio>
#include <cmath>
#include <cstdlib>
#include <ctime>
#include <memory.h>
#include <cassert>

using namespace std;

#define LEFT 0
#define RIGHT 1

const int N = 1234567;

int fenw[N];

void modify(int x, int v) {
while (x < N) {
    fenw[x] += v;
    x = (x | (x - 1)) + 1;
  }
}

int find_sum(int x) {
  int v = 0;
  while (x > 0) {
v += fenw[x];
x &= x - 1;
}
return v;
}

int a[N], b[N], dir[N];
int k;
vector <int> ret;
vector <int> g[N];

void solve(int root, int to) {
if (root > to) {
return;
}
if (root == to) {
ret.push_back(root);
return;
}
int sz = g[root].size();
int sfrom = root;
int sto = to;
for (int q = 0; q < sz; q++) {
    int j = g[root][q];
    if (dir[j] == LEFT) {
      if (b[j] > sfrom) {
sfrom = b[j];
}
}
if (dir[j] == RIGHT) {
if (b[j] - 1 < sto) {
        sto = b[j] - 1;
      }
    }
    modify(a[j], -1);
    modify(b[j], 1);
  }
  int parity = 0;
  while (sfrom <= sto) {
    if (parity) {
      if (find_sum(sfrom) == 0) {
        solve(root + 1, sfrom);
        ret.push_back(root);
        solve(sfrom + 1, to);
        return;
      }
      sfrom++;
    } else {
      if (find_sum(sto) == 0) {
        solve(root + 1, sto);
        ret.push_back(root);
        solve(sto + 1, to);
        return;
      }
      sto--;
    }
    parity ^= 1;
  }
  puts("IMPOSSIBLE");
  exit(0);
}

int main() {
  int n;
  scanf("%d %d", &n, &k);
  char foo[42];
  for (int i = 1; i <= n; i++) {
    fenw[i] = 0;
    g[i].clear();
  }
  for (int i = 0; i < k; i++) {
    scanf("%d %d %s", a + i, b + i, foo);
    if (a[i] < 1 || a[i] > n || b[i] < 1 || b[i] > n || b[i] <= a[i]) {
      puts("IMPOSSIBLE");
      return 0;
    }
    dir[i] = (foo[0] == 'L' ? LEFT : RIGHT);
    modify(a[i], 1);
    modify(b[i], -1);
    g[a[i]].push_back(i);
  }
  ret.clear();
  solve(1, n);
  for (int i = 0; i < n - 1; i++) {
    printf("%d ", ret[i]);
  }
  printf("%d\n", ret[n - 1]);
  return 0;
}