Algorithm
BOJ 2493 탑 c++
BOJ 2493 탑 c++ 백준 2493 탑 cpp #include using namespace std; #define X first #define Y second int ea; stack S; int main() { ios::sync_with_stdio(0); cin.tie(0); cin >> ea; int t; cin >> t; S.push({1, t}); cout t; while (!S.empty() && S.top().Y < t) { S.pop(); } if (S.empty()) { cout
2020. 8. 22. 09:11
최근댓글