【複試練習】九度OJ
1、1202 排序
http://ac.jobdu.com/problem.php?pid=1202
#include<stdio.h> #include<algorithm>//引入math標頭檔案 using namespace std; int main() { int n; int buf[10000]; while(scanf("%d",&n)!=EOF){ for(int i=0;i<n;i++){ scanf(" %d",&buf[i]); } sort(buf,buf+n); for(int i=0;i<n;i++){ printf("%d ",buf[i]); } printf("\n"); } return 0; }
相關推薦
【複試練習】九度OJ
1、1202 排序 http://ac.jobdu.com/problem.php?pid=1202 #include<stdio.h> #include<algorithm>
【 分類 】- 九度OJ
專欄達人 授予成功建立個人部落格專欄
【學習筆記】〖九度OJ〗題目1443:Tr A
題目1443:Tr A 時間限制:1 秒 記憶體限制:128 兆 特殊判題:否 提交:283 解決:168 題目描述: A為一個方陣,則Tr A表示A的跡(就是主對角線上各項的和),現要求Tr(A^k)%9973。 輸入: 資料的第一行是一個T
【學習筆記】〖九度OJ〗題目1156:誰是你的潛在朋友
題目1156:誰是你的潛在朋友 時間限制:1 秒 記憶體限制:32 兆 特殊判題:否 提交:2594 解決:1214 題目描述: “臭味相投”——這是我們描述朋友時喜歡用的詞彙。兩個人是朋友通常意味著他們存在著許多共同的興趣。然而作為一個宅
【學習筆記】〖九度OJ〗題目1446:Head of a Gang
題目1446:Head of a Gang 時間限制:1 秒 記憶體限制:128 兆 特殊判題:否 提交:622 解決:144 題目描述: One way that the police finds the head of a gang is to
九度oj 題目1001:A+B for Matrices 【ZJU2011考研機試題1】
題目1001:A+B for Matrices 時間限制:1 秒 記憶體限制:32 兆 特殊判題:否 提交:11539 解決:4694 題目描述: This time, you are supposed to find A+B where
【學習筆記】〖九度OJ〗題目1186:列印日期
題目1186:列印日期 時間限制:1 秒 記憶體限制:32 兆 特殊判題:否 提交:2549 解決:918 題目描述: 給出年分m和一年中的第n天,算出第n天是幾月幾號。 輸入: 輸入包括兩個整數y(1<=y<=3000),n(1&
【學習筆記】〖九度OJ〗題目1464:Hello World for U
題目描述: Given any string of N (>=5) characters, you are asked to form the characters into the shape of U. For example, "helloworld" can be printed as:
【九度OJ】1001【矩陣】
發現自己好像有很多CSDN賬號,可惜都記不住了。。不過以後就常用這個賬號了,要多寫文章! 九度OJ 1001題,為浙大2011年考研機試題目 題目類別屬於矩陣,比較簡單。 只要按照常規,先讀入陣列,再將兩個相加,逐行逐列判斷是否都為0即可。因為m和n的值最大為10,所以即
【劍指Offer面試題】 九度OJ1516:調整數組順序使奇數位於偶數前面
pen 沒有 name func hide tracking 順序 popu type 題目鏈接地址: http://ac.jobdu.com/problem.php?pid=1516 題目1516:調整數組順序使奇數位於偶數前面 時間限制:
九度OJ題目1101--1150解題練習(四)
題目1101:計算表示式 題目描述: 對於一個不存在括號的表示式進行計算 輸入: 存在多種資料,每組資料一行,表示式不存在空格 輸出: 輸出結果 方法:從第一個位置起,依次獲得運算元,每次獲取
九度OJ 題目1204:農夫、羊、菜和狼的故事
pla pan wol 題目 r+ ear play struct tab 思路:廣度 優先 記錄路徑長度 但是題目的意思好像是要記錄具體路徑 下次再搞吧 題目描述: 有一個農夫帶一只羊、一筐菜和一只狼過河.果沒有農夫看管,則狼要吃羊,羊要吃菜.但是船很小,只
九度OJ-題目1009:二叉搜索樹
提交 二叉排序樹 軟件 amp cpp creat .com xheditor ear 題目1009:二叉搜索樹 從如今開始打算重新啟動刷題征程。程序猿的人生不須要解釋! 這次撇開poj hoj等難度較大的oj系統,從九度入手(已經非常長時間沒寫過代碼
<九度 OJ>題目1012:暢通project
數組下標 find cout set href col 設置 data [] 題目描寫敘述: 某省調查城鎮交通狀況,得到現有城鎮道路統計表。表中列出了每條道路直接連通的城鎮。省政府“暢通project”的目標是使全省不論什麽兩個城鎮間都能夠實現
oj---九度oj--1078---二叉樹重建
pre urn pac uil pri () esp 通過 str 通過兩種遍歷結果重建,必須有中序遍歷(找到根的位置)。 #include<cstdio> #include<cstring> #include<string> #i
oj---九度oj---1015
class sca pri main esp int nbsp color pre #include<cstdio> #include<algorithm> #include<cstring> using namespace
oj---九度oj---1043----day of week
sunday clu %d process put else ril nbsp pro #include<cstdio> #include<cstring> int isleap(int n){ if((n%100!=0&&
oj---九度oj---1070----今年的第幾天
struct else print scan mon urn roc style *** 通過與原點的差值來計算第幾天(要+1). #include<cstdio> int isleap(int n){ if((n%100!=0&&
oj----九度oj----1186---第幾天---輸出日期
int 大於 spa return log ... include void ext 利用日期類的nextday(); 或者先加一個月的天數,然後判斷是否大於給定天數,然後再加一個月的天數,在判斷.... #include<cstdio> int isl
oj--九度oj--1018
mem pan main return clas != bre 九度oj size 簡單hash #include<cstdio> #include<cstring> int grade[101]; int main(){ int n;