Created
January 15, 2019 18:41
-
-
Save jinnatul/d5085492493b121e28f1fdb00a32ad67 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<bits/stdc++.h> | |
using namespace std; | |
/// Typedef | |
typedef long long ll; | |
#define sc1(a) scanf("%lld",&a) | |
#define sc2(a,b) scanf("%lld %lld",&a,&b) | |
#define pf1(a) printf("%lld\n",a) | |
#define pf2(a,b) printf("%lld %lld\n",a,b) | |
#define mx 10000007 | |
#define mod 100000007 | |
#define PI acos(-1.0) | |
int dr[] = {-2,-2,-1,-1,1,1,2,2}; | |
int dc[] = {-1,1,-2,2,-2,2,-1,1}; | |
int main() | |
{ | |
ll num, m, tc, t = 1; | |
// freopen("/media/morol/574830c2-aaf8-40d8-9a94-7a029a2e831f/coding/clion/p1/output.txt", "w", stdout); | |
sc1(tc); | |
while (tc--){ | |
sc1(num); | |
ll arr[num]; | |
for(ll i = 1; i <= num; i++){ | |
sc1(arr[i]); | |
} | |
ll ans = 0; | |
for(ll i = 1; i <= num; i++){ | |
if(arr[i] != i){ | |
for(ll j = i+1; j <= num; j++){ | |
if(arr[j] == i){ | |
swap(arr[i], arr[j]); | |
ans ++; | |
break; | |
} | |
} | |
} | |
} | |
cout << "Case " << t++ << ": " << ans << endl; | |
} | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment