[๋ฐฑ์ค,c++] 12851๋ฒ - ์จ๋ฐ๊ผญ์ง2
12851๋ฒ: ์จ๋ฐ๊ผญ์ง 2 ์๋น์ด๋ ๋์๊ณผ ์จ๋ฐ๊ผญ์ง์ ํ๊ณ ์๋ค. ์๋น์ด๋ ํ์ฌ ์ N(0 ≤ N ≤ 100,000)์ ์๊ณ , ๋์์ ์ K(0 ≤ K ≤ 100,000)์ ์๋ค. ์๋น์ด๋ ๊ฑท๊ฑฐ๋ ์๊ฐ์ด๋์ ํ ์ ์๋ค. ๋ง์ฝ, ์๋น์ด์ ์์น๊ฐ X์ผ ๋ www.acmicpc.net #include #include #define MAX 100001 using namespace std; int N,K; //N= ์๋น์ด๊ฐ ์๋ ์์น, K= ๋์์ด ์๋ ์์น int short_time=MAX,cnt; int visited[MAX]; void bfs(int start,int time){ queueq; q.push({start,0}); visited[start]=1; while(!q.empty()){ int sta..
2021. 11. 4.