태그>알파벳알고리즘(총 1개의 글)
'알파벳알고리즘' 관련 최근글
-
- 알파벳(BOJ 1987번)

-
Jsh by 까진 북극곰|2016/05/31 16:55
123456789101112131415161718192021222324252627282930313233343536373839#include using namespace std; char map[22][22];int en[26];int dir[4][2] = { { -1, 0 }, { 0, -1 }, { 1, 0 }, { 0, 1 } };int R, C;int ans = 0; void dfs(int nowR, int nowC, int step) { if ..
- 알파벳(BOJ 1987번)



