Skip to content

Instantly share code, notes, and snippets.

@pithesun
pithesun / bitmast.cpp
Created September 20, 2022 12:55
비트마스킹을 이용한 경우의 수
#include<bits/stdc++.h>
using namespace std;
const int n = 4;
int main(){
string a[n] = {"사과", "딸기", "포도", "배"};
/* 경우의 수 16개 출력하기 */
for(int i=0; i < (1 << n); i++){
string ret = "";
for(int j=0; j < n; j++){
@pithesun
pithesun / inputStrToIntArr.cpp
Created March 3, 2022 14:55
한자리수 숫자배열 받기
#include<bits/stdc++.h>
using namespace std;
const int max_n = 104;
int dy[4] = {-1, 0, 1, 0};
int dx[4] = {0, 1, 0, -1};
int n, m, a[max_n][max_n], visited[max_n][max_n], y, x;
int main(){
scanf("%d %d", &n, &m);
for(int i = 0; i < n; i++){