백준 11945번: 뜨거운 붕어빵
-
백준 11945번: 뜨거운 붕어빵구현(Implementation) 2018. 7. 23. 17:53
https://www.acmicpc.net/problem/11945 1. 문제반대로 출력 하기 2. 알고리즘키워드 - 정렬, 구현 3. 코드 1234567891011121314151617181920212223242526272829303132333435#include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; #define MAX_SIZE 100#define INF 0x7fffffff#define CENDL "\n"#define ll long long int main() { cin.tie(0); std::ios::sync..