Notice
Recent Posts
Recent Comments
Link
목록전체 글 (159)
할껀하고놀자
[백준] 9012번 괄호
#include #include using namespace std; bool check(string s) { stack st; for (int j = 0; j > tc; for (int i = 0; i ..
[IT]/백준
2019. 8. 14. 12:11
[백준] 17143번 낚시왕
#include #include #include #include using namespace std; const int Max = 100 + 1; // 문제에서 상하우좌로 주어진다. int dy[4] = { -1,1,0,0 }; int dx[] = { 0,0,1,-1 }; int R, C, M; int arr[Max][Max]; // 크기 속도 방향 vector shark[Max][Max]; int main() { ios_base::sync_with_stdio(false); cin.tie(0); cin >> R >> C >> M; for (int i = 0; i > r >> c >> s >> d >> z; shark[r][c].push_ba..
[IT]/백준
2019. 6. 11. 22:32