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 (the number of test cases)
5 (number of people in the queue)
2 1 5 3 4(キューの最終状態を表す、スペースで区切られたn個の整数)
5 (number of people in the queue)
2 5 1 3 4(nスペースで区切られた、キューの最終状態を表す整数)。
必要な賄賂の最小数を表す整数を出力する必要があります。ライン構成が不可能な場合は、混沌とします。
出力3
混沌
質問:
ランタイムを削減するにはどうすればよいですか?現在、配列を使用しています。
数週間前に解決しました。これが問題の解決策です(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]-2); j < i; j++)
if (q[j] > q[i])
bribe++;
}
if(chaotic)
Console.WriteLine("Too chaotic");
else
Console.WriteLine(bribe);
}
チャレンジで提供される方法以外の方法は必要ありません