【CodeForces】426Div2 C The Meaningless Game
連結:http://codeforces.com/contest/834/problem/C
Solution
考的時候想複雜了,沒從整體下手。
因為一邊乘了k一邊乘了k^2,所以乘起來一定是k^3
記
#include<stdio.h>
#include<cmath>
using std::pow;
typedef long long ll;
ll a,b,c,d;
int n;
inline void solve()
{
scanf ("%I64d%I64d",&a,&b);
c=pow(d=a*b,1.0/3)+0.2;
puts(a%c==0 && b%c==0 && c*c*c==d?"Yes":"No");
}
int main()
{
scanf("%d",&n);
while (n--) solve();
}
相關推薦
【CodeForces】426Div2 C The Meaningless Game
連結:http://codeforces.com/contest/834/problem/C Solution 考的時候想複雜了,沒從整體下手。 因為一邊乘了k一邊乘了k^2,所以乘起來一定是k^3 記 c=(a∗b)13 c=(a*b)^\frac{1}
【CodeForces】426Div2 B The Festive Evening
連結:http://codeforces.com/contest/834/problem/B Solution 暴力計算一下每個時刻有多少門開啟就好 注意不要先關門再判斷 #include<stdio.h> #define N 1000005 int n,k,tot;
【CodeForces】426Div2 A The Useless Toy
連結:http://codeforces.com/contest/834/problem/A Solution: 很簡單的整除判斷 因為太久沒有寫過程式碼怕出問題,寫得非常累贅(暴力) #include<stdio.h> int ch(char a) { if (
【CodeForces】578 C. Weakness and Poorness
const 現在 else log display closed string force bit 【題目】C. Weakness and Poorness 【題意】給定含n個整數的序列ai,定義新序列為ai-x,要使新序列的最大子段和絕對值最小,求實數x。n<=2*
【CodeForces】901 C. Bipartite Segments
無向連通圖 tarjan 容易 相交 play ace 偶數 segments memset 【題目】C. Bipartite Segments 【題意】給定n個點m條邊的無向連通圖,保證不存在偶數長度的簡單環。每次詢問區間[l,r]中包含多少子區間[x,y]滿足只保留[x
【思維題】【貪心】【模擬】【CodeForces】794 C Naming Company
【題意】 兩個人A和B在玩一個填字母遊戲。現在A和B都有一個包含 n 個小寫字母的多重集合(可以有重複字元)。 初始有一個長度為n的空字串s,兩人輪流操作,A先手。一次操作可以將自己集合中的一個字母拿出來,放到字串s的某個空位置,然後把這個字母從自己集合中刪除(如果
【Codeforces Round 332 (Div 2)C】【貪心】Day at the Beach 最多區間數劃分使得區間排序構成全域性排序
One day Squidward, Spongebob and Patrick decided to go to the beach. Unfortunately, the weather was bad, so the friends were unable to ride waves. However
【Codeforces】CF 467 C George and Job(dp)
++ clas show mes ces -m col scanf tro 題目 傳送門:QWQ 分析 dp基礎題。 $ dp[i][j] $表示前i個數分成j組的最大和。 轉移顯然。 吐槽:做cf題全靠洛谷翻譯茍活。 代碼 1
【Codeforces】CF 2 B The least round way(dp)
clu 更新 .org ORC 我們 std 預處理 blank putc 題目 傳送門:QWQ 分析 求結尾0的數量QwQ。 10只能是$ 2 \times 5 $,我們預處理出每個數因子中2和5的數量。 我們接著dp出從左上到右下的經過的最少的
【Codeforces】CF 5 C Longest Regular Bracket Sequence(dp)
ont ref urn 左右 namespace 連續 %d pan tro 題目 傳送門:QWQ 分析 洛谷題解裏有一位大佬講的很好。 就是先用棧預處理出可以匹配的左右括號在數組中設為1 其他為0 最後求一下最長連續1的數量。 代碼
【Codeforces】CF 8 C Looking for Order(狀壓dp)
輸出 max blank ret ces clas pan force date 題目 傳送門:QWQ 分析 這種題不會做 吃棗藥丸。。。。。 想到狀壓已經經過的點。 然後更新時枚舉兩個點加進去。 復雜度$ {O(2^n \times n^2)
【CodeForces】835F Roads in the Kingdom
一、題目 題目描述 王國有\(n\)座城市與\(n\)條有長度的街道,保證所有城市直接或間接聯通,我們定義王國的直徑為所有點對最短距離中的最大值,現因財政危機需拆除一條道路並同時要求所有城市仍然聯通,求所有拆除方案中王國直徑的最小值 輸入格式 第一行一個整數\(n\),接下來\(n\)行每行三個整數\
【codeforces】Round #522 (Div. 2) A+B+C+D
目錄 【A. Kitchen Utensils】 【B. Personalized Cup】 【C. Playing Piano】 【D. Barcelonian Distance】 【A. Kitchen Utensils】 題目連結:htt
【codeforces】Round #520 (Div. 2) A+B+C+D
目錄 A - A Prank B - Math C - Banh-mi D - Fun with Integers 【A - A Prank】 題目連結:http://codeforces.com/contest/1062/problem/A 【題意】 給你一串序
【Codeforces】1051F. The Shortest Statement【MST+LCA+最短路】
F. The Shortest Statement 【題目描述】 傳送門 【題解】 題目也說了,重點是m-n<=20,我們就可以先跑最小生成樹,最後剩下最多21條邊,對著44個端點(包括起點和終點)用LCA建圖,跑最短路就可以了。 程式碼如下 #inclu
【Codeforces Round #520 C.Banh-mi】字首和+
C. Banh-mi 題意 題意就是給你一個01串,q次詢問每次詢問一段區間題意就是給你一個01串,q次詢問每次詢問一段區間題意就是給你一個01串,q次詢問每次詢問一段區間 每次詢問詢問的是:最初區間內0的權值是0,1的權值是1每次詢問詢問的是:最初區間內0的權
【Codeforces 817B. Makes And The Product】
B. Makes And The Product time limit per test2 seconds memory limit per test256 megabytes inputstandard input outputstandard out
【CODEFORCES】 C. Number of Ways
C. Number of Ways time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard o
排序與檢索【UVa10474】Where is the Marble?
素數 指數 ive test posit muc not ria str Where is the
【轉】Visual C++ 和 C++ 有什麽區別?
業界 流行 編譯器 gtk+ 語言 開發 多種實現 廠商 計算 有位同學問我“Visual C++和C++有什麽區別?”,這的確是初學者會感到困惑的問題,比較常見。除此之外,還有“先學C++好,還是先學Visual C++好?”,都屬於同樣的概念不明的問題,就比