D. Gourmet choice

http://codeforces.com/problemset/problem/1131/D

time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

Mr. Apple, a gourmet, works as editor-in-chief of a gastronomic periodical. He travels around the world, tasting new delights of famous chefs from the most fashionable restaurants. Mr. Apple has his own signature method of review  — in each restaurant Mr. Apple orders two sets of dishes on two different days. All the dishes are different, because Mr. Apple doesn't like to eat the same food. For each pair of dishes from different days he remembers exactly which was better, or that they were of the same quality. After this the gourmet evaluates each dish with a positive integer.

Once, during a revision of a restaurant of Celtic medieval cuisine named «Poisson», that serves chestnut soup with fir, warm soda bread, spicy lemon pie and other folk food, Mr. Apple was very pleasantly surprised the gourmet with its variety of menu, and hence ordered too much. Now he's confused about evaluating dishes.

The gourmet tasted a set of nn dishes on the first day and a set of mm dishes on the second day. He made a table aa of size n×mn×m , in which he described his impressions. If, according to the expert, dish ii from the first set was better than dish jj from the second set, then aijaij is equal to ">", in the opposite case aijaij is equal to "<". Dishes also may be equally good, in this case aijaij is "=".

Now Mr. Apple wants you to help him to evaluate every dish. Since Mr. Apple is very strict, he will evaluate the dishes so that the maximal number used is as small as possible. But Mr. Apple also is very fair, so he never evaluates the dishes so that it goes against his feelings. In other words, if aijaij is "<", then the number assigned to dish ii from the first set should be less than the number of dish jj from the second set, if aijaij is ">", then it should be greater, and finally if aijaij is "=", then the numbers should be the same.

Help Mr. Apple to evaluate each dish from both sets so that it is consistent with his feelings, or determine that this is impossible.

Input

The first line contains integers nn and mm (1≤n,m≤10001≤n,m≤1000 ) — the number of dishes in both days.

Each of the next nn lines contains a string of mm symbols. The jj -th symbol on ii -th line is aijaij . All strings consist only of "<", ">" and "=".

Output

The first line of output should contain "Yes", if it's possible to do a correct evaluation for all the dishes, or "No" otherwise.

If case an answer exist, on the second line print nn integers — evaluations of dishes from the first set, and on the third line print mm integers — evaluations of dishes from the second set.

Examples

Input

Copy

3 4
>>>>
>>>>
>>>>

Output

Copy

Yes
2 2 2 
1 1 1 1 

Input

Copy

3 3
>>>
<<<
>>>

Output

Copy

Yes
3 1 3 
2 2 2 

Input

Copy

3 2
==
=<
==

Output

Copy

No

Note

In the first sample, all dishes of the first day are better than dishes of the second day. So, the highest score will be 22 , for all dishes of the first day.

In the third sample, the table is contradictory — there is no possible evaluation of the dishes that satisfies it.

#include<bits/stdc++.h>
using namespace std;
int s=1000;
char mp[1005][1005];
int father[2005];

vector<int>v[2005];
void init()
{
    for(int i=0; i<2005; i++)
    {
        father[i]=i;
    }
}
int fin(int x)
{
    if(father[x]==x)
        return x;
    father[x]=fin(father[x]);
    return father[x];
}
void merg(int a,int b)
{
    father[fin(a)]=fin(b);
}
int in_degree[2005];
int ans[2005];
struct node
{
    int x,step;
    node() {}
    node(int x,int step):x(x),step(step) {}
};
void toopsort()
{
    memset(ans,0,sizeof(ans));
    memset(in_degree,0,sizeof(in_degree));
    for(int i=0; i<2005; i++)
    {
        for(int j=0; j<v[i].size(); j++)
        {
            in_degree[v[i][j]]++;
        }
    }
    queue<node>q;
    for(int i=0; i<2005; i++)
    {
        if(!in_degree[i])
        {
            q.push(node(i,1));
        }
    }
    while(!q.empty())
    {
        node now=q.front();
        ans[now.x]=max(ans[now.x],now.step);
        q.pop();
        for(int i=0; i<v[now.x].size(); i++)
        {
            in_degree[v[now.x][i]]--;
            if(!in_degree[v[now.x][i]])
            {
                q.push(node(v[now.x][i],now.step+1));
            }
        }
    }
}
int main()
{
    int m,n;
    init();
    scanf("%d%d",&n,&m);
    getchar();
    for(int i=1; i<=n; i++)
    {
        for(int j=1; j<=m; j++)
        {
            mp[i][j]=getchar();
            if(mp[i][j]=='=')
            {
                merg(i,s+j);
            }
        }
        getchar();
    }//先缩点,再拓扑
    for(int i=1; i<=n; i++)
    {
        for(int j=1; j<=m; j++)
        {
             if(mp[i][j]=='>')
            {
                v[fin(s+j)].push_back(fin(i));
            }
            else if(mp[i][j]=='<')
            {
               v[fin(i)].push_back(fin(s+j));
            }
        }

    }
    toopsort();
    int flag=0;
    for(int i=1;i<=n;i++)
    {
        if(ans[fin(i)]==0)
        flag=1;
    }
    for(int i=1;i<=m;i++)
    {
         if(ans[fin(i+s)]==0)
        flag=1;
    }
    if(flag)
    {
        printf("No\n");
        return 0;
    }
       printf("Yes\n");
    for(int i=1;i<=n;i++)
    {
        printf("%d ",ans[fin(i)]);
    }
    printf("\n");
    for(int i=1;i<=m;i++)
    {
        printf("%d ",ans[fin(i+s)]);
    }
    return 0;
}