hdu 1334 Perfect Cubes
#include<cstdio> int main(){ int n,a,b,c,d; while(~scanf("%d",&n)){ for(a=6;a<=n;a++){//樣例中a最小為6 for(b=2;b<a;b++){ for(c=b+1;c<a;c++){ for(d=c+1;d<a;d++) if(a*a*a==b*b*b+c*c*c+d*d*d) printf("Cube = %d, Triple = (%d,%d,%d)\n",a,b,c,d); } } } } return 0; }
hdu 1334 Perfect Cubes
相關推薦
hdu 1334 Perfect Cubes
acm題目的意思是給出一個數N,尋找a,b,c,d使得a^3=b^3+c^3+d^3成立,其中a<=N,1<b<c<d。 #include<cstdio> int main(){ int n,a,b,c,d; while(~scanf("%d",&
POJ1543 Perfect Cubes
參考題解 #include <iostream> #include <cstdio> using namespace std; int main() { int N; cin >> N; for(int a=2; a<=N; a++
HDU 3524 Perfect Squares 迴圈節+快速冪取模+找規律
Problem Description A number x is called a perfect square if there exists an integer b satisfying x=b^2. There are many beautiful theorem
uva 368 Perfect Cubes
題目:輸出滿足 a3 = b3 + c3 + d3 的所有情況 注意:1 按照a遞增的順序排列 2 a,b,c,d 的最小值為2! 技巧: 先把所有的立方打表。然後直接用表中元素判斷 法一:打表 #include <cstdio> #include &
hdu 4719 Oh My Holy FFF(dp線段樹優化)
origin end should adding href ast left code padding Oh My Holy FFF Time Limit: 5000/2500 MS (Java/Others) Memory Limit: 65535/65535
HDU 1087 Super Jumping! Jumping! Jumping!
blog col som oss score ++ all you finall Nowadays, a kind of chess game called “Super Jumping! Jumping! Jumping!” is very popular in HDU.
HDU 1114 Piggy-Bank(完全背包)
ask style span ica ace eno eterm ++ empty 題目: Before ACM can do anything, a budget must be prepared and the necessary financial support o
Hdu-1072
std bits -1 簡單 pty one int 個數字 一行 題目描述: 首先輸入一個N;代表測試數據的個數; 然後每個測試數據的開頭第一行輸入一個n和一個命令(FIFO或FILO<就是先進先出或先進後出>) 然後是該測試數據的n行,每行包括“IN”加一個
hdu 1284 錢幣兌換問題
print class mat 題目 能夠 ims 遞推 detail acm 題目鏈接:http://acm.hdu.edu.cn/showproblem.php?pid=1284 思路:僅僅有3個硬幣,範圍是32768。能夠一個一個枚舉硬幣。假設僅僅放價值為1的硬幣
HDU 2648(搜索題,哈希表)
cin ostream pac cstring using mem == ring scan #include<iostream> #include<map> #include<string> #include<cstring&
hdu 5078
fine title tle only asi art it is text 現場 Osu! Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 262144/262144 K (Java/Others) T
HDU 2112 HDU Today(STL MAP + Djistra)
stl eof dji int ble mes tin std n) 題目鏈接:HDU Today 立即集訓要開始,抓緊時間練練手,最短路的基礎題,第一次用STL的map 題目非常水,可是錯了N遍。手賤了。本題不優點理的就是把地名轉化為數字 #include
Super Jumping! Jumping! Jumping! HDU - 1087
std idt scribe cas abs roc assume led cor Nowadays, a kind of chess game called “Super Jumping! Jumping! Jumping!” is very popular in HDU
最大連續子序列 HDU - 1231
bsp 最大 程序 結構 %d col 最小 元素 class 給定K個整數的序列{ N1, N2, ..., NK },其任意連續子序列可表示為{ Ni, Ni+1, ..., Nj },其中 1 <= i <= j <= K。最大連續子序列是所有連續子
HDU 4930 Fighting the Landlords(扯淡模擬題)
href blank 。。 clear break 輸出 family fig set Fighting the Landlords 大意: 鬥地主。。。。 分別給出兩把手牌,肯定都合法。每張牌大小順序是Y (i.e. colored Joker) &g
Hdu 2243 考研路茫茫——單詞情結 (AC自己主動機+矩陣)
單詞 spa 主動 efi scanf 考研 max 數量 define 哎喲餵。中文題。。。不說題意了。 首先做過POJ 2778能夠知道AC自己主動機是能夠求出長度為L的串中不含病毒串的數量的。 POJ 2778的大概思路就是先用全部給的病毒串建一個AC自己主動
hdu 5360 Hiking(優先隊列+貪心)
將不 cpp () tor 多少 int 實現 size pty 題目:http://acm.hdu.edu.cn/showproblem.php?pid=5360 題意:beta有n個朋友,beta要邀請他的朋友go hiking,已知每一個朋友的理想人數[L,R](
HDU 3416
ace article put star adding path scan targe div Marriage Match IV Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768
HDU 1078 FatMouse and Cheese
blog pan con turn str while fat 記憶 sort 記憶化搜索,$dp$。 每一個點走到的最長距離是固定的,也就是只會算一次,那麽記憶化一下即可,也可以按值從小到大排序之後進行$dp$。 記憶化搜索: #include <cstd
hdu 3333 Turing Tree(線段樹)
target vector nac ++ uil sim con wrap pro 題目鏈接:hdu 3333 Turing Tree 題目大意:給定一個長度為N的序列。有M次查詢,每次查詢l。r之間元素的總和,同樣元素僅僅算一次。 解題思路:漲姿勢了,線段樹的一