본문 바로가기

카테고리 없음

2020-09-24 22시 개발자 글 모음 | "백준 - [Platinum 3] 54" 외 3개 이야기

[1일1쓰기] Day 13 : 500번 디버깅 by 지소라


    DFS(Depth First Search) by 백규철 about Algorithm

    • #include #include #include #include using namespace std; vector* vertex; bool* checked; void dfs(int st); int main() { int n
    • to; cin >> n >> m >> s; vertex = new vector[n + 1]; checked = new bool[n + 1]; for (int i = 0; i < n + 1; i++) checked[i] = false; while (m--) { cin >> from >> to; vertex[from]
    • end()); dfs(s); delete[] vertex; delete[] checked; return 0; } void dfs(int st) { cout << st << " "; checked[st] = true; for (int i = 0; i < vertex[st]


    AWS 9월 새소식 요약 및 Single Sign-On 집중 분석 :: 차니의 #클라우드클리닉 20회 by 윤석찬 about Cloud,AWS

    • 이번 시간에는 9월 24일 진행된 온라인 밋업에서 지난 한달 간 AWS에서 새로 나온 신규 기능을 몇 개 뽑아서 설명해 드립니다
    • 클라우드에 대한 본격적인 기술 동향과 AWS 고객 활용 사례 및 여러분이 직접 올린 질문에 대한 답변을 드리는 프로그램입니다
    • Please note that you are solely responsible for your judgment on checking facts for your investments and prohibit your citations as commercial content or news sources


    백준 - [Platinum 3] 5446번 용량 부족 by 최승호 about 백준

    • head for char in string: # 각 캐릭터 순회 # 해당 캐릭터가 트리에 없을경우 하위 노드로 추가 if char not in cur
    • head result = 0 for char in string: # 해당 캐릭터가 있고 해당 캐릭터가 mark가 되어있으면 계속 순회 if char in cur
    • readline()) for t in range(T): trie = Trie() # N1: 지워야 하는 파일 개수 N1 = int(stdin