PAT 1008 數組元素循環右移問題
阿新 • • 發佈:2017-12-18
strong 組元 一行 循環右移 使用 class pan 數組 sta
PAT 1008 數組元素循環右移問題
一個數組A中存有N(N>0)個整數,在不允許使用另外數組的前提下,將每個整數循環向右移M(M>=0)個位置,即將A中的數據由(A0A1……AN-1)變換為(AN-M …… AN-1 A0 A1……AN-M-1)(最後M個數循環移至最前面的M個位置)。如果需要考慮程序移動數據的次數盡量少,要如何設計移動的方法?
輸入格式:每個輸入包含一個測試用例,第1行輸入N ( 1<=N<=100)、M(M>=0);第2行輸入N個整數,之間用空格分隔。
輸出格式:在一行中輸出循環右移M位以後的整數序列,之間用空格分隔,序列結尾不能有多余空格。
輸入樣例:6 2 1 2 3 4 5 6輸出樣例:
5 6 1 2 3 4
1 #include<iostream> 2 using namespace std; 3 int main(){ 4 int N,dist; 5 cin>>N>>dist; 6 int num[N+1]; 7 for(int i=1;i<=N;i++) 8 cin>>num[i]; 9 int temp1,temp,s=1; 10 temp1=num[s]; 11 for(intView Codei=1;i<=N;i++){ 12 int n=(dist+s)%N; 13 if(n==0) n=N; 14 temp=num[n]; 15 num[n]=temp1; 16 s=n; 17 temp1=temp; 18 if(s==1) { 19 s=2; temp1=num[s]; 20 } 21 } 22 int flag=0; 23 for(int i=1;i<=N;i++) 24 if(flag++==0) 25 cout<<num[i]; 26 else cout<<" "<<num[i]; 27 }
PAT 1008 數組元素循環右移問題