# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
12793 |
2015-01-03T14:03:49 Z |
woqja125 |
전선 연결하기 (GA9_wire) |
C++ |
|
1000 ms |
5776 KB |
#include<stdio.h>
int d[600001];
int l[300001];
int ans[300001];
int main()
{
int n, i;
int a, b, t;
a = b = 10000000;
scanf("%d", &n);
for(i=1; i<=2*n; i++)
{
scanf("%d", d+i);
l[d[i]] = i;
}
for(i=1; i<=2*n; i++)
{
if(l[d[i]] == i) continue;
if(a <= i) a = 10000000;
if(b <= i) b = 10000000;
t = l[d[i]];
if(t > a && t > b)
{
printf("IMPOSSIBLE");
return 0;
}
if(t <= a && (a <= b || b > t) )
{
a = t;
ans[d[i]] = 0;
}
else if(t<=b && (b<a || a>t))
{
b = t;
ans[d[i]] = 1;
}
else while(1);
}
for(i=1; i<=2*n; i++) printf("%c", ans[d[i]]==1?'v':'^');
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
5776 KB |
Output is correct |
2 |
Execution timed out |
1000 ms |
5772 KB |
Program timed out |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Halted |
0 ms |
0 KB |
- |