본문 바로가기

지우너

검색하기
지우너
프로필사진 지옹

  • 분류 전체보기 (275)
    • Records (0)
      • TIL (7)
      • 회고 (0)
      • 정보처리기사 (10)
    • SSAFY (0)
    • Project (12)
    • 오류보고서😎 (0)
    • Programming (26)
      • Tips (9)
      • Math (0)
      • C++ (5)
      • C# (1)
      • JAVA (1)
      • MySQL (0)
      • Server (7)
      • OpenGL (3)
    • CS (5)
      • Computer Architecture (0)
      • Operating System (0)
      • Data structure (0)
      • Algorithm (4)
      • Network (1)
      • Database (0)
    • Problem Solving (204)
    • 책 (7)
      • 리뷰 (1)
      • 정리 (6)
Guestbook
Notice
Recent Posts
Recent Comments
Link
  • GitHub
«   2024/10   »
일 월 화 수 목 금 토
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31
Tags
  • 코드트리
  • BFS
  • 다익스트라
  • two pointer
  • Dijkstra
  • greedy
  • 이진 탐색
  • 티스토리챌린지
  • DP
  • parametric search
  • 완전탐색
  • floyd warshall
  • 오블완
more
Archives
Today
Total
관리 메뉴
  • 글쓰기
  • 방명록
  • RSS
  • 관리

목록2024/10/29 (1)

지우너

[코드트리] 간선 제거하기 C++

문제https://www.codetree.ai/missions/9/problems/delete-edge?&utm_source=clipboard&utm_medium=text 코드트리 | 코딩테스트 준비를 위한 알고리즘 정석국가대표가 만든 코딩 공부의 가이드북 코딩 왕초보부터 꿈의 직장 코테 합격까지, 국가대표가 엄선한 커리큘럼으로 준비해보세요.www.codetree.ai 코드#include #include #include #include using namespace std;const int MAX_N = 100'000;int n, m;int uf[MAX_N+1];vector > edges; //{w, a, b}int myFind(int x){ if(uf[x]==x) return x; return..

Problem Solving 2024. 10. 29. 21:27
이전 Prev 1 Next 다음

Blog is powered by kakao / Designed by Tistory

티스토리툴바