NC252832. Alpha, Beta, Omega
描述
Slay the Spire is a game primarily about survival, collecting cards, and building a powerful deck to wipe out your foes.
Recently, Colin got interested in a special card : 'Alpha'.
输入描述
A single line contains four integers
, representing there are
'Alpha' card ,
'Beta' card and
'Omega' card in the initial draw pile, and
is the number of cards should be taken out in each round.
输出描述
A single integer, represents the minimum number of rounds guarantees that Colin will win.
示例1
输入:
3 0 0 2
输出:
4
说明:
In the worst case, Colin can only get the 'Omega' card for the first time in the fourth round.示例2
输入:
100000000 100000000 100000000 1
输出:
300000001
C++(clang++ 11.0.1) 解法, 执行用时: 3ms, 内存消耗: 472K, 提交时间: 2023-06-05 16:56:26
#include<bits/stdc++.h> using namespace std; int main () { int na,nb,no,k; cin>>na>>nb>>no>>k; if (na+nb<k) cout<<1; else cout<<(na*2+nb)/k+1; }
C++(g++ 7.5.0) 解法, 执行用时: 3ms, 内存消耗: 636K, 提交时间: 2023-07-09 00:27:37
#include <iostream> using namespace std; int main() { int a,b,k; cin>>a>>b>>k>>k; cout<<(a+b<k?1:(a*2+b)/k+1); return 0; }
Python3 解法, 执行用时: 44ms, 内存消耗: 5808K, 提交时间: 2023-06-27 16:39:48
a,b,o,k=map(int,input().split()) if a+b<k: print(1) elif a*2+b%k==0: print((a*2+b)//k) else:print((a*2+b)//k+1)