백준 알고리즘 10974번 : 모든 순열

Zoo Da·2021년 11월 16일
0

백준 알고리즘

목록 보기
258/337
post-thumbnail

링크

https://www.acmicpc.net/problem/10974

sol1) STL

#pragma GCC optimize ("O3")
#include <bits/stdc++.h>
#define fastio ios::sync_with_stdio(0), cin.tie(0), cout.tie(0)
using namespace std;

int32_t main() {
  fastio;
  int n; cin >> n;
  vector<int> v(n);
  iota(v.begin(), v.end(),1);
  do{
    for(auto& c : v) cout << c << ' ';
    cout << "\n";
  }
  while(next_permutation(v.begin(), v.end()));
  return 0;
}
profile
메모장 겸 블로그

0개의 댓글