日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

Little Elephant and Shifts(CF-220C)

發(fā)布時間:2025/3/17 编程问答 24 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Little Elephant and Shifts(CF-220C) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

Problem Description

The Little Elephant has two permutations a and b of length n, consisting of numbers from 1 to n, inclusive. Let's denote the i-th (1?≤?i?≤?n) element of the permutation a as ai, the j-th (1?≤?j?≤?n) element of the permutation b — as bj.

The distance between permutations a and b is the minimum absolute value of the difference between the positions of the occurrences of some number in a and in b. More formally, it's such minimum |i?-?j|, that ai?=?bj.

A cyclic shift number i (1?≤?i?≤?n) of permutation b consisting from n elements is a permutation bibi?+?1... bnb1b2... bi?-?1. Overall a permutation has n cyclic shifts.

The Little Elephant wonders, for all cyclic shifts of permutation b, what is the distance between the cyclic shift and permutation a?

Input

The first line contains a single integer n (1 ≤ n ≤ 105) — the size of the permutations. The second line contains permutation a as n distinct numbers from 1 to n, inclusive. The numbers are separated with single spaces. The third line contains permutation b in the same format.

Output

In n lines print n integers — the answers for cyclic shifts. Print the answers to the shifts in the order of the shifts' numeration in permutation b, that is, first for the 1-st cyclic shift, then for the 2-nd, and so on.

Examples

Input

2
1 2
2 1

Output

1
0

Input

4
2 1 3 4
3 4 2 1

Output

2
1
0
1

題意:給出兩個長度為 n 的序列 a 、b,定義距離為:若 a[i]==b[i],則 dis=|i-j|,現在要進行 n-1 次操作,每次將 b 序列進行循環(huán)左移,要求輸出初始序列以及每次左移后的序列的最小的 dis

思路:

若 b[j] 在 a[i] 的左邊,那么每次移動,dis+1,反之,若 b[j] 在 a[i] 的右邊,每次移動,dis-1

因此使用 multiset 模擬每次挪動的過程,統(tǒng)計每一次左移一共加了多少、減了多少,然后在每次的答案中找大于 0 中最小的,小于 0 中最大的,兩者再取最小

Source Program

#include<iostream> #include<cstdio> #include<cstdlib> #include<string> #include<cstring> #include<cmath> #include<ctime> #include<algorithm> #include<utility> #include<stack> #include<queue> #include<vector> #include<set> #include<map> #include<bitset> #define EPS 1e-9 #define PI acos(-1.0) #define INF 0x3f3f3f3f #define LL long long const int MOD = 1E9+7; const int N = 1000000+5; const int dx[] = {-1,1,0,0,-1,-1,1,1}; const int dy[] = {0,0,-1,1,-1,1,-1,1}; using namespace std;multiset<int> st; int bucket[N],b[N]; int main(){int n,x;scanf("%d",&n);for(int i=1;i<=n;i++){int x;scanf("%d",&x);bucket[x]=i;}for(int i=1;i<=n;i++){scanf("%d",&b[i]);int pos=i-bucket[b[i]];st.insert(pos);}multiset<int>::iterator it;for(int i=0;i<n;i++){it=st.lower_bound(i);//尋找位置int res=INF;if(it!=st.end()){int temp=(*it)-i;res=min(res,temp);}if(it!=st.begin()){it--;int temp=i-(*it);res=min(res,temp);}printf("%d\n",res);int pos=b[i+1];int temp=i+1-bucket[pos];it=st.find(temp);st.erase(it);//刪除第一個temp+=n;st.insert(temp);//插入到最后}return 0; }

?

總結

以上是生活随笔為你收集整理的Little Elephant and Shifts(CF-220C)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。