-
백준 12756번: 고급 레스토랑구현(Implementation) 2018. 7. 28. 11:41반응형
https://www.acmicpc.net/problem/12756
1. 문제
반복문, 조건문을 이용하여 푸는 문제
2. 알고리즘
키워드 - 구현
3. 코드
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950#include <iostream>#include <sstream>#include <string>#include <algorithm>#include <functional>#include <vector>#include <list>#include <queue>#include <deque>#include <map>#include <set>#include <stack>#include <math.h>using namespace std;#define MAX_SIZE 100#define INF 0x7fffffff#define CENDL "\n"#define ll long longint main() {cin.tie(0);std::ios::sync_with_stdio(false);int p1_demage, p1_strength; cin >> p1_demage >> p1_strength;int p2_demage, p2_strength; cin >> p2_demage >> p2_strength;while(true) {p1_strength -= p2_demage;p2_strength -= p1_demage;// 두 플레이어 중 체력이 1 보다 작으면 종료if (p1_strength < 1 || p2_strength < 1) {break;}}// 둘다 죽은 상태if (p1_strength < 1 && p2_strength < 1) {cout << "DRAW" << CENDL;} else if (p1_strength > p2_strength) {cout << "PLAYER A" << CENDL;} else if (p1_strength < p2_strength) {cout << "PLAYER B" << CENDL;}return 0;}cs 반응형'구현(Implementation)' 카테고리의 다른 글
백준 14720번: 우유 축제 (0) 2018.07.28 백준 14656번: 조교는 새디스트야!! (0) 2018.07.28 백준 14491번: 9진수 (0) 2018.07.27 백준 4435번: 중간계 전쟁 (0) 2018.07.27 백준 2720번: 세탁소 사장 동혁 (0) 2018.07.27