PAT 1070. 結繩(25) C++
#include <iostream> using namespace std; int main() { int N; cin>>N; double len[N-1]; for(int i=0;i<N;i++) { cin>>len[i]; } for(int i=0;i<N;i++) { for(int j=0;j<N;j++) { double temp; if(len[i]<len[j]) { temp=len[i]; len[i]=len[j]; len[j]=temp; } } } double sum=len[0]; for(int i=1;i<N;i++) { sum=(sum+len[i])/2; } int x=sum; cout<<x; }
相關推薦
PAT 1070. 結繩(25) C++
#include <iostream> using namespace std; int main() { int N; cin>>N; double len[N-1]; for(int i=0;i<N;i++) {
1070. 結繩(25) PAT乙級真題
1070. 結繩(25) 給定一段一段的繩子,你需要把它們串成一條繩。每次串連的時候,是把兩段繩子對摺,再如下圖所示套接在一起。這樣得到的繩子又被當成是另一段繩子,可以再次對摺去跟另一段繩子串連。每次串連後,原來兩段繩子的長度就會減半。 給定N段繩子的長度,你需
PAT 1070 結繩
text const 一行 problem 取整 () ble 輸出格式 scanf https://pintia.cn/problem-sets/994805260223102976/problems/994805264706813952 給定一段一段的繩子,你需要把
PAT-乙-1070 1070 結繩 (25 分)
程式碼 #include <iostream> #include <algorithm> using namespace std; int main() { int n; cin>>n; double a[n]; for(in
PAT乙級 1070 結繩 (25 分)
給定一段一段的繩子,你需要把它們串成一條繩。每次串連的時候,是把兩段繩子對摺,再如下圖所示套接在一起。這樣得到的繩子又被當成是另一段繩子,可以再次對摺去跟另一段繩子串連。每次串連後,原來兩段繩子的長度就會減半。 給定 N 段繩子的長度,你需要找出它們能串成的繩子的最大長度。 輸入格式:
1070 結繩——C/C++實現
題目 1070 結繩 (25 point(s)) 給定一段一段的繩子,你需要把它們串成一條繩。每次串連的時候,是把兩段繩子對摺,再如下圖所示套接在一起。這樣得到的繩子又被當成是另一段繩子,可以再次對摺去跟另一段繩子串連。每次串連後,原來兩段繩子的長度就會減半。 給
1070 結繩(25 分)
給定一段一段的繩子,你需要把它們串成一條繩。每次串連的時候,是把兩段繩子對摺,再如下圖所示套接在一起。這樣得到的繩子又被當成是另一段繩子,可以再次對摺去跟另一段繩子串連。每次串連後,原來兩段繩子的長度就會減半。給定 N 段繩子的長度,你需要找出它們能串成的繩子的最大長度。輸入
PAT-BASIC1070——結繩
題目描述: 知識點:排序 思路:先從小到大排序,再依次結繩 為什麼從小到大排序後,再依次結繩所得到的繩子的長度最大呢? 假設一個序列[a1, a2, a3, a4, ..., a(n - 1), an],其中a1 <= a2 <= a3 <
PAT (Advanced Level) Practice 1070 Mooncake (25 分)
Mooncake is a Chinese bakery product traditionally eaten during the Mid-Autumn Festival. Many types of fillings and crusts can be found in
PAT甲級 1070 Mooncake (25 分)貪心演算法
1070 Mooncake (25 分) Mooncake is a Chinese bakery product traditionally eaten during the Mid-Autumn Festival. Many types of fillings and
PAT Basic 1020. 月餅 (25)(C語言實現)
, CSDN內容暫時不更新(將來有計劃更新), 請前往連結檢視最新內容. 歡迎star 我的repo題目月餅是中國人在中秋佳節時吃的一種傳統食品,不同地區有許多不同風味的月餅。現給定
PAT甲級-1070 Mooncake(25 分)【貪心】
1070 Mooncake(25 分) Mooncake is a Chinese bakery product traditionally eaten during the Mid-Autumn Festival. Many types of fillings and c
【PAT甲級】1070 Mooncake(25 分)(貪心)
題目連結 Mooncake is a Chinese bakery product traditionally eaten during the Mid-Autumn Festival. Many types of fillings and crusts can be fou
【笨方法學PAT】1070 Mooncake (25 分)
一、題目 Mooncake is a Chinese bakery product traditionally eaten during the Mid-Autumn Festival. Many types of fillings and crusts can be found in tr
【LeetCode】25. k個一組翻轉連結串列 結題報告 (C++)
題目描述:給出一個連結串列,每 k 個節點一組進行翻轉,並返回翻轉後的連結串列。k 是一個正整數,它的值小於或等於連結串列的長度。如果節點總數不是 k 的整數倍,那麼將最後剩餘節點保持原有順序。示例 :給定這個連結串列:1->2->3->4->5當 k
PAT 甲級 1003. Emergency (25)
cat stand 題意 current different string imu hand ber 1003. Emergency (25) 時間限制 400 ms 內存限制 65536 kB 代碼長度限制 16000 B 判題程序 Standard
PAT——1011. A+B和C
一行 ext import evel tin 試用 util true ger 給定區間[-231, 231]內的3個整數A、B和C,請判斷A+B是否大於C。 輸入格式: 輸入第1行給出正整數T(<=10),是測試用例的個數。隨後給出T組測試用例,每組占一行,順序給出
PAT 1011. A+B和C
true als src include 用例 col ios lose std 1011. A+B和C (15) 給定區間[-231, 231]內的3個整數A、B和C,請判斷A+B是否大於C。 輸入格式: 輸入第1行給出正整數T(<=10),是測試用例的個數。隨
PAT-1138. Postorder Traversal (25)
cati end href lin ref cas oid strong %d 1138. Postorder Traversal (25) 時間限制 600 ms 內存限制 65536 kB 代碼長度限制 16000 B 判題程序 Standard 作者
PAT-1137. Final Grading (25)
sig 用例 max using it is iss printf course int 1137. Final Grading (25) 時間限制 100 ms 內存限制 65536 kB 代碼長度限制 16000 B 判題程序 Standard 作者