Python實現翻轉數組功能樣本,python數組

來源:互聯網
上載者:User

Python實現翻轉數組功能樣本,python數組

本文執行個體講述了Python實現翻轉數組功能。分享給大家供大家參考,具體如下:

題目描述

給定一個長度為n的整數數組a,元素均不相同,問數組是否存在這樣一個片段,只將該片段翻轉就可以使整個數組升序排列。其中數組片段[l,r]表示序列a[l], a[l+1], ..., a[r]。原始數組為
a[1], a[2], ..., a[l-2], a[l-1], a[l], a[l+1], ..., a[r-1], a[r], a[r+1], a[r+2], ..., a[n-1], a[n],
將片段[l,r]反序後的數組是
a[1], a[2], ..., a[l-2], a[l-1], a[r], a[r-1], ..., a[l+1], a[l], a[r+1], a[r+2], ..., a[n-1], a[n]。

輸入

第一行資料是一個整數:n (1≤n≤105),表示數組長度。
第二行資料是n個整數a[1], a[2], ..., a[n] (1≤a[i]≤109)。

輸出

輸出“yes”,如果存在;否則輸出“no”,不用輸出引號。

範例輸出
yes

範例輸入
4
2 1 3 4

實現代碼:

while 1:  n = int(raw_input())  x = raw_input()  breakx = [int(i) for i in x.split()]y = [i for i in x]y.sort()partx = [x[i] for i in range(n) if x[i]!=y[i]]party = [y[i] for i in range(n) if x[i]!=y[i]]party.reverse()if partx == party:  print "yes"else:  print "no"

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.