Codeforces Round #524 (Div. 2) Petya and Origami CodeForces - 1080A
很簡單的題意。。。
#include<stdio.h> #include<iostream> #include<algorithm> #include<cmath> #include<cstring> #include<string.h> #include<queue> #include<stack> #include<list> #include<map> #include<set> #include<vector> using namespace std; typedef long long int ll; const int maxn =1e6+5; const int maxm=10000; const int mod =1e9+7; const int INF=0x3f3f3f3f; const double eps=1e-8; int main() { int n,k;scanf("%d%d",&n,&k); printf("%d\n",(2*n%k==0?2*n/k:2*n/k+1)+(5*n%k==0?5*n/k:5*n/k+1)+(8*n%k==0?8*n/k:8*n/k+1)); return 0; }
相關推薦
Codeforces Round #524 (Div. 2) Petya and Origami CodeForces - 1080A
很簡單的題意。。。 #include<stdio.h> #include<iostream> #include<algorithm> #include<cmath> #include<cstring> #include<strin
Codeforces Round #524 (Div. 2) Masha and two friends
題目連結:C. Masha and two friends 一個矩形,黑白塊按規律分佈。A同學選定一個矩形區域,將該區域全塗改成白色;B同學後選定一個區域,將該區域全塗改成黑色。那麼結束後,白塊、黑快的數量是多少。 一個矩形兩個點,左下和右上。有一個規律:如果左下點是白色,那麼以該點為左下的矩形中
Codeforces Round #524 (Div. 2) Masha and two friends矩形
題目 題意: 給一個n*m塊大的黑白相間的矩形,在這個舉行中操作,要先把第一個矩形(左下角座標(x1,y2),右上角座標(x2,y2)) 全部塗成白色,再把第二個矩形(左下角座標(x3,y3),右上角座標(x4,y4)) 全部塗成黑
Codeforces Round #524 (Div. 2) Olya and magical square CodeForces - 1080D
題意: 給你 2^n * 2^n 的正方形,讓你執行恰好 k 次操作,每一次操作將一個大小不為 1 的正方形剪成四個一模一樣的正方形,但是正方形不能被移動。 問:k 次操作後,能否從左下角找一條路徑到達右上角(只能橫著或豎著走),使得經過的正方形大小相同(包含起點與終點)。 如果可以,輸出經過的
Codeforces Round #524 (Div. 2) Margarite and the best present CodeForces - 1080B
找一下規律即可。。 #include<stdio.h> #include<iostream> #include<algorithm> #include<cmath> #include<cstring> #include<strin
Codeforces Round #524 (Div. 2) A. Petya and Origami
A. Petya and Origami time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output
Codeforces Round #524 (Div. 2) C. Masha and two friends 思路
題目:題目連結 思路:直接計數顯然是不好處理的,但分情況討論只要不寫錯這題是一定可以出的,但這樣基本做完這個題就沒時間做其他題了,但當時我就這麼蠢的這樣做了,比賽一個半小時的時候突然發現一個似乎可行的規律,但因為時間問題沒有證,當時那個思路已經快寫完了也沒有換思路寫,就杯具了,最後那個寫了一坨的程式碼耗了我
Codeforces Round #524 (Div. 2) B. Margarite and the best present 規律題
B. Margarite and the best present time limit per test 1 second memory limit per test 256 megabytes input standard input output stand
Codeforces Round #524 (Div. 2) C. Masha and two friends
C. Masha and two friends time limit per test 1 second memory limit per test 256 megabytes input standard input output standard outpu
【Codeforces Round #524(Div. 2)】Olya and magical square(思維+數學推導)
題目連結 D. Olya and magical square time limit per test 1 second memory limit per test 256 megabytes input standard input output standar
Codeforces Round #524 (Div. 2)C. Masha and two friends(容斥定理)
傳送門 題意:先給出一個n行m列的矩陣,這個矩陣是黑白交錯的,左下角是白的,然後再給出一個矩陣,這個矩陣就全部染成白色的,之後再給出一個矩陣,這個矩陣染成黑色的,資料範圍是1e9,問最後白色塊和黑色塊分別由多少? 題解:首先可以算出這個大矩陣的黑色塊和白色塊分別有多少個,然後我們算下要染成白
Codeforces Round #524 (Div. 2)D - TV Shows
int lld 多個 i++ force != namespace 超時 當前 題意是給你n個節目,每次租一臺電視需要消耗x+(r-l)*y元,問你怎麽樣安排才能使得看完所有節目並且消費最少,輸出最少的金額 做法是按節目開始時間l排序,遍歷所有節目,如果該節目不能在已有的
Codeforces Round #524 Div. 2 翻車記
round 太差 lib esp 條件 有一個 out print ace A:簽到。room裏有一個用for寫的,hack了一發1e8 1,結果用了大概600+ms跑過去了。慘絕人寰。 #include<iostream> #include<c
Codeforces Round #524 (Div. 2)(前3題題解)
這場比賽手速場+數學場,像我這樣讀題都讀不大懂的蒟蒻表示呵呵呵。 第四題搞了半天,大概想出來了,但來不及(中途家裡網炸了)查錯,於是我交了兩次丟了100分。幸虧這次沒有掉rating。 比賽傳送門:https://codeforces.com/contest/1080。 A.Petya
Codeforces Round #524 (Div.2)題解
題解 CF1080A 【Petya and Origami】 這道題其實要我們求的就是 \[\lceil 2*n/k \rceil + \lceil 5*n/k \rceil + \lceil 2*n/k \rceil\] 然後就做完了 # include <bits/stdc++.h> #
Codeforces Round #524 (Div. 2)
A. Petya and Origamitime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard outputPetya is having a party soon, and
【CF套題】Codeforces Round #524 (Div. 2) (1080A~F)
原題地址 迴歸 CF \text {CF} CF,這場堪堪上紫。 A.Petya and Origa
Codeforces Round #524 (Div. 2) Solution
A. Petya and Origami Water. 1 #include <bits/stdc++.h> 2 using namespace std; 3 4 #define ll long long 5 ll n, k; 6 7 ll Get(l
Codeforces Round #524 (Div. 2) ABC
A - Petya and Origami 題意:n個客人,每個本子有m張同一顏色的紙; 每一個客人要 紅色2張 綠色5張 白色8張; 問最少需要買多少本本子 #include<bits/stdc++.h> using namespace s
Codeforces Round #489 (Div. 2) Nastya and a Game ——想法,利用題目資料範圍
題目連結:http://codeforces.com/contest/992/problem/D 這道題的資料是真的狗,我乘出去爆ll瞭然後答案是符合的我就加了1,但是不能爆ll的,所以答案應該是0,,就是第15個數據。。以後得記住是inf/a[i]而不是mu