當前位置:首頁 > 芯聞號 > 充電吧
[導讀]題面:Bubble Sort Time Limit: 2000/1000 MS (Java/Others)????Memory Limit: 65536/65536 K (Java/Others)To

題面:

Bubble Sort Time Limit: 2000/1000 MS (Java/Others)????Memory Limit: 65536/65536 K (Java/Others)
Total Submission(s): 709????Accepted Submission(s): 418


Problem Description P is a permutation of the integers from 1 to N(index starting from 1).
Here is the code of Bubble Sort in C++.

for(int?i=1;ii;—j)
????????if(P[j-1]?>?P[j])
????????????t=P[j],P[j]=P[j-1],P[j-1]=t;


After the sort, the array is in increasing order. ?? wants to know the absolute values of difference of rightmost place and leftmost place for every number it reached. ?
Input The first line of the input gives the number of test cases T; T test cases follow.
Each consists of one line with one integer N, followed by another line with a permutation of the integers from 1 to N, inclusive.

limits
T <= 20
1 <= N <= 100000
N is larger than 10000 in only one case.
?
Output For each test case output “Case #x: y1 y2 … yN” (without quotes), where x is the test case number (starting from 1), and yi is the difference of rightmost place and leftmost place of number i. ?
Sample Input


2 3 3 1 2 3 1 2 3 ?
Sample Output


Case #1: 1 1 2 Case #2: 0 0 0HintIn first case, (3, 1, 2) -> (3, 1, 2) -> (1, 3, 2) -> (1, 2, 3) the leftmost place and rightmost place of 1 is 1 and 2, 2 is 2 and 3, 3 is 1 and 3 In second case, the array has already in increasing order. So the answer of every number is 0. ?
Author FZU ?
Source 2016 Multi-University Training Contest 4



題意:

??? 給定一個1-N的隨機排列,對此序列進行冒泡排序,問在排序過程中,每個數(shù)到達過的最右端和最左端的差值。


解題:

??? 因為排序的具體過程是從右側開始,每次將當前最小的值移到最左端,故一個數(shù)會到達的最右位置是它的起始位置+其右側小于它的數(shù)字數(shù)量(在后面比他小的數(shù)向左移動的過程中,它會向右移動這么多步)。最左位置是其原來位置和排序之后應該處于的位置,兩者的小者。最后,兩個位置作差即為所求。

??? 關鍵點是在于如何統(tǒng)計一個數(shù)右側有幾個數(shù)比它小,可以從右往左遍歷,用樹狀數(shù)組維護,因為是邊移動邊統(tǒng)計的,每次就可以直接詢問【1-a[j]-1】的和,即為右側小于a[j]的數(shù)字的數(shù)量。


代碼:


#include#include#include#define?inf?1000000
using?namespace?std;
int?a[100010],c[100010],ans[100010];
int?t,n;
int?max(int?a,int?b)
{
	return?a>b?a:b;
}
int?min(int?a,int?b)
{
	return?a0)
	{
		res+=c[x];
		x-=lowbit(x);
	}
	return?res;
}
void?update(int?i,int?val)
{
	while(i<=n)
	{
		c[i]+=val;
		i+=lowbit(i);
	}
}
int?main()
{
	int?tmp,le,ri;
	scanf("%d",&t);
????for(int?i=1;i<=t;i++)
	{
		scanf("%d",&n);
		for(int?j=0;j=0;j--)
		{
???????????tmp=sum(a[j]);
		???update(a[j],1);
		???le=min(a[j]-1,j);
		???ri=j+tmp;
		???ans[a[j]]=ri-le;
		}
		printf("Case?#%d:",i);
		for(int?j=1;j<=n;j++)
			printf("?%d",ans[j]);
		printf("n");
	}
	return?0;
}



本站聲明: 本文章由作者或相關機構授權發(fā)布,目的在于傳遞更多信息,并不代表本站贊同其觀點,本站亦不保證或承諾內(nèi)容真實性等。需要轉載請聯(lián)系該專欄作者,如若文章內(nèi)容侵犯您的權益,請及時聯(lián)系本站刪除。
換一批
延伸閱讀

9月2日消息,不造車的華為或?qū)⒋呱龈蟮莫毥谦F公司,隨著阿維塔和賽力斯的入局,華為引望愈發(fā)顯得引人矚目。

關鍵字: 阿維塔 塞力斯 華為

加利福尼亞州圣克拉拉縣2024年8月30日 /美通社/ -- 數(shù)字化轉型技術解決方案公司Trianz今天宣布,該公司與Amazon Web Services (AWS)簽訂了...

關鍵字: AWS AN BSP 數(shù)字化

倫敦2024年8月29日 /美通社/ -- 英國汽車技術公司SODA.Auto推出其旗艦產(chǎn)品SODA V,這是全球首款涵蓋汽車工程師從創(chuàng)意到認證的所有需求的工具,可用于創(chuàng)建軟件定義汽車。 SODA V工具的開發(fā)耗時1.5...

關鍵字: 汽車 人工智能 智能驅(qū)動 BSP

北京2024年8月28日 /美通社/ -- 越來越多用戶希望企業(yè)業(yè)務能7×24不間斷運行,同時企業(yè)卻面臨越來越多業(yè)務中斷的風險,如企業(yè)系統(tǒng)復雜性的增加,頻繁的功能更新和發(fā)布等。如何確保業(yè)務連續(xù)性,提升韌性,成...

關鍵字: 亞馬遜 解密 控制平面 BSP

8月30日消息,據(jù)媒體報道,騰訊和網(wǎng)易近期正在縮減他們對日本游戲市場的投資。

關鍵字: 騰訊 編碼器 CPU

8月28日消息,今天上午,2024中國國際大數(shù)據(jù)產(chǎn)業(yè)博覽會開幕式在貴陽舉行,華為董事、質(zhì)量流程IT總裁陶景文發(fā)表了演講。

關鍵字: 華為 12nm EDA 半導體

8月28日消息,在2024中國國際大數(shù)據(jù)產(chǎn)業(yè)博覽會上,華為常務董事、華為云CEO張平安發(fā)表演講稱,數(shù)字世界的話語權最終是由生態(tài)的繁榮決定的。

關鍵字: 華為 12nm 手機 衛(wèi)星通信

要點: 有效應對環(huán)境變化,經(jīng)營業(yè)績穩(wěn)中有升 落實提質(zhì)增效舉措,毛利潤率延續(xù)升勢 戰(zhàn)略布局成效顯著,戰(zhàn)新業(yè)務引領增長 以科技創(chuàng)新為引領,提升企業(yè)核心競爭力 堅持高質(zhì)量發(fā)展策略,塑強核心競爭優(yōu)勢...

關鍵字: 通信 BSP 電信運營商 數(shù)字經(jīng)濟

北京2024年8月27日 /美通社/ -- 8月21日,由中央廣播電視總臺與中國電影電視技術學會聯(lián)合牽頭組建的NVI技術創(chuàng)新聯(lián)盟在BIRTV2024超高清全產(chǎn)業(yè)鏈發(fā)展研討會上宣布正式成立。 活動現(xiàn)場 NVI技術創(chuàng)新聯(lián)...

關鍵字: VI 傳輸協(xié)議 音頻 BSP

北京2024年8月27日 /美通社/ -- 在8月23日舉辦的2024年長三角生態(tài)綠色一體化發(fā)展示范區(qū)聯(lián)合招商會上,軟通動力信息技術(集團)股份有限公司(以下簡稱"軟通動力")與長三角投資(上海)有限...

關鍵字: BSP 信息技術
關閉
關閉