N과 M (5)1 [BOJ]15654번: N과 M (5)(c++) https://www.acmicpc.net/problem/15654 15654번: N과 M (5)N개의 자연수와 자연수 M이 주어졌을 때, 아래 조건을 만족하는 길이가 M인 수열을 모두 구하는 프로그램을 작성하시오. N개의 자연수는 모두 다른 수이다. N개의 자연수 중에서 M개를 고른 수열www.acmicpc.net 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758#include iostream>#include algorithm> using namespace std; const int MAX = 8;int numbers[MAX];bool visited[MAX];i.. 2020. 5. 5. 이전 1 다음