CodeForces 252B-Unsorting Array

Posted by Myy on November 4, 2015

题目出处

CodeForces 252B

题目大意

给出一组数,问能否交换其中两个不相等的数,使得数组变为无序.能则输出两数位置,不能则输出-1.

题目分析

这道题我的思路是找到一组a,b,c使a < b,b < c,那么交换a、b;或者使a < c,b < c,那么交换b、c.因此我从前向后遍历一次,又从后向前遍历一次.均没有满足情况的便输出-1.

测试样例

Input

1
2
4
1 2 3 4

Output

1
1 2

Input

1
2
3
1 1 1

Output

1
-1

AC 代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<string>
#include<set>
#include<map>
#include<stack>
#include<queue>
#include<algorithm>
#include<cmath>
using namespace std;
int num[100005];
set<int> st;
int main()
{
        int n;
        scanf("%d",&n);
        for(int i=0;i<n;i++)
        {
                scanf("%d",num+i);
                st.insert(num[i]);
        }
        if(st.size()<2||n<3)
        {
                printf("-1\n");
        }
        else
        {
                int f1,f2;
                for(int i=0;i<n;i++)
                {
                        f1=f2=-1;
                        for(int j=i+1;j<n;j++)
                        {
                                if(f1!=-1&&num[i]<num[j])
                                {
                                        printf("%d %d\n",min(i+1,f1+1),max(i+1,f1+1));
                                        goto en;
                                }
                                if(f2!=-1&&num[i]>num[j])
                                {
                                        printf("%d %d\n",min(i+1,f2+1),max(i+1,f2+1));
                                        goto en;
                                }
                                if(num[i]<num[j])
                                        f1=j;
                                if(num[i]>num[j])
                                        f2=j;
                        }
                        while(i+1<n&&num[i+1]==num[i])i++;
                }
                for(int i=n-1;i>=0;i--)
                {
                        f1=f2=-1;
                        for(int j=i-1;j>=0;j--)
                        {
                                if(f1!=-1&&num[i]<num[j])
                                {
                                        printf("%d %d\n",min(i+1,f1+1),max(i+1,f1+1));
                                        goto en;
                                }
                                if(f2!=-1&&num[i]>num[j])
                                {
                                        printf("%d %d\n",min(i+1,f2+1),max(i+1,f2+1));
                                        goto en;
                                }
                                if(num[i]<num[j])
                                        f1=j;
                                if(num[i]>num[j])
                                        f2=j;
                        }
                        while(i-1>=0&&num[i-1]==num[i])i--;
                }
                puts("-1");
                en:
                        ;
        }
        return 0;
}