1
以下網站有問題。Codechef PERMUT2解決方案
http://www.codechef.com/problems/PERMUT2
我一直在試圖爲PERMUT2代碼解決方案。我的下面的解決方案在某些測試用例上失敗。請幫助我發現下面的代碼中的缺陷。
#include <stdio.h>
int a[100000];
int main()
{
int i, j, n, ret;
while(1)
{
scanf("%d", &n);
if(n == 0)
break;
ret = 0;
for(i = 0; i < n; i++)
scanf("%d", &a[i]);
for(i = 0; i < n; i++)
if(a[i] != i + 1)
ret++;
if(ret % 2 == 0)
printf("ambiguous\n");
else
printf("not ambiguous\n");
}
return 0;
}
我不明白是什麼''res''計數:爲什麼你檢查''A [1] = I + 1''? – 2012-08-05 17:14:04