UVALive 6508 Permutation Graphs
生活随笔
收集整理的這篇文章主要介紹了
UVALive 6508 Permutation Graphs
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
Permutation Graphs
Time Limit: 3000ms Memory Limit: 131072KB This problem will be judged on?UVALive. Original ID:?650864-bit integer IO format:?%lld????? Java class name:?Main 解題:逆序數(shù) 1 #include <bits/stdc++.h> 2 using namespace std; 3 typedef long long LL; 4 const int maxn = 100010; 5 int c[maxn],hhash[maxn],n; 6 void add(int i){ 7 while(i > 0){ 8 c[i] += 1; 9 i -= i&-i; 10 } 11 } 12 int sum(int i,int ret = 0){ 13 while(i < maxn){ 14 ret += c[i]; 15 i += i&-i; 16 } 17 return ret; 18 } 19 int main(){ 20 int kase,tmp; 21 scanf("%d",&kase); 22 while(kase--){ 23 scanf("%d",&n); 24 for(int i = 1; i <= n; ++i){ 25 scanf("%d",&tmp); 26 hhash[tmp] = i; 27 } 28 memset(c,0,sizeof c); 29 LL ret = 0; 30 for(int i = 0; i < n; ++i){ 31 scanf("%d",&tmp); 32 ret += sum(hhash[tmp] + 1); 33 add(hhash[tmp]); 34 } 35 printf("%lld\n",ret); 36 } 37 return 0; 38 } View Code
?
轉(zhuǎn)載于:https://www.cnblogs.com/crackpotisback/p/4854934.html
總結(jié)
以上是生活随笔為你收集整理的UVALive 6508 Permutation Graphs的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 关于内置浏览器的问题
- 下一篇: 站立会议总结03