一个长度为n(n>0)的序列中存在“有趣的跳跃”当前仅当相邻元素的差的绝对值经过排序后正好是从1到(n-1)。例如,1 4 2 3存在“有趣的跳跃”,因为差的绝对值分别为3,2,1。当然,任何只包含单个元素的序列一定存在“有趣的跳跃”。你需要写一个程序判定给定序列是否存在“有趣的跳跃”。
4 1 4 2 3
Jolly
1 #include <iostream> 2 #include <algorithm> 3 #include <cmath> 4 using namespace std; 5 int main() 6 { 7 int n; 8 long long a[3001],b[3001]; 9 cin >> n; 10 for (int i=0;i<n;++i ) 11 { 12 cin >> a[i]; 13 } 14 for (int i=0;i<n-1;++i) 15 { 16 b[i] = abs(a[i + 1] - a[i]); 17 } 18 sort(b, b+n-1); 19 int c[3001]; 20 for (int i = 0; i < n-1; ++i) 21 { 22 c[i] = i+1; 23 } 24 for (int i = 0; i < n-1 ; ++i) 25 { 26 if (b[i]!=c[i]) 27 { 28 cout << "Not jolly"; 29 return 0; 30 } 31 32 } 33 cout<< "Jolly"<<endl; 34 return 0; 35 }
原文:https://www.cnblogs.com/dss-99/p/14088321.html