목록전체 글 (104)
눈팅하는 게임개발자 블로그
백준 알고리즘 1966
#include using namespace std; #define SWAP(x,y,z) z = x, x = y, y = z; class documentary { private: int priority; bool target; public: documentary() { priority = 0; target = false; } documentary(int p, bool t) { priority = p; target = t; } void set_priority(int p) { priority = p; } int get_priority() { return priority; } void set_target(bool t) { target = t; } bool get_target() { return target; ..
공부한거/백준알고리즘
2018. 5. 16. 20:10