新年乱局HackerRank代码优化

时间:2018-11-29 16:05:45

标签: c# .net c#-4.0 visual-studio-2015

static void minimumBribes(int[] q)
{
    Int32 TotalCount = 0;
    bool blnSuccess = true;
    Int32[] size = Ordering(q);
    for (int intI = 0; intI < q.Length; intI++)
    {
        Int32 Tempvariable = 0;
        Int32 TooChaotic = 0;
        Int32 index = Index(size,q[intI]);
        do
        {
            if (q[intI] != size[intI])
            {
                Tempvariable = size[index];
                size[index] = size[index - 1];
                size[index - 1] = Tempvariable;
                index = index - 1;
                TooChaotic = TooChaotic + 1;
                if (TooChaotic > 2)
                {
                    break;
                }
                TotalCount = TotalCount + 1;
            }
        } while (q[intI] != size[intI]);
        if (TooChaotic > 2)
        {
            Console.WriteLine("Too chaotic");
            blnSuccess = false;
            break;
        }
    }
    if (blnSuccess)
    {
        Console.WriteLine(TotalCount);
    }
}

static int[] Ordering(int[] z)
{
    int[] r = new int[z.Length];
    r = z.OrderBy(x => x).ToArray();
    return r;
}
static int Index(int[] z,int integer)
{
    for (int intI = 0; intI < z.Length; intI++)
    {
        if(z[intI]== integer)
        {
            return intI;
        }
    }
    return 0;
}

此代码可以正常工作,但是其运行时间太长。 我在 HackerRank 中收到“由于超时而终止” 。但是,该解决方案在本地计算机上运行良好,但是需要更多时间。 问题链接:https://www.hackerrank.com/challenges/new-year-chaos/problem

样本输入

2(测试用例的数量)

5(队列中的人数)

2 1 5 3 4(n个以空格分隔的整数,描述队列的最终状态)

5(队列中的人数)

2 5 1 3 4( n 用空格分隔的整数,描述队列的最终状态)。

必须打印一个整数,代表所需的最小贿赂数量;如果无法进行线路配置,则必须太混乱。

输出 3

太混乱了

问题:

如何减少其运行时间?目前,我正在使用数组。

1 个答案:

答案 0 :(得分:16)

几周前我已经解决了,这是我的解决方案(100%)

static void minimumBribes(int[] q) {
    int bribe = 0;
    bool chaotic = false;
    int n = q.Length;
    for(int i = 0; i < n; i++)
    {
        if(q[i]-(i+1) > 2)
        {               
            chaotic = true;
            break;     
        }
        for (int j = Math.Max(0, q[i]-1-1); j < i; j++)
            if (q[j] > q[i]) 
                bribe++;
    }
    if(chaotic)
        Console.WriteLine("Too chaotic");
    else
        Console.WriteLine(bribe);
}

除了挑战提供的方法外,您不需要其他任何方法