Skip to content

Instantly share code, notes, and snippets.

/* Includes ------------------------------------------------------------------*/
#include "main.h"
/* Private includes ----------------------------------------------------------*/
/* USER CODE BEGIN Includes */
/* USER CODE END Includes */
/* Private typedef -----------------------------------------------------------*/
/* USER CODE BEGIN PTD */
#include <iostream>
using namespace std;
int a[11];
int b[11];
int main(void) {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
#include <vector>
#include <iostream>
using namespace std;
int n;
int mat[20][20];
bool visit[20][20];
bool desert[101];
#include <string>
#include <sstream>
#include <iostream>
using namespace std;
char change_alpha(char c) {
if (c >= 'a' && c <= 'z') {
c -= 32;
}
#include <queue>
#include <tuple>
#include <cmath>
#include <vector>
#include <cstring>
#include <iostream>
#include <algorithm>
using namespace std;
/*
* adc.c
*
* Created: 2019-05-18 오후 10:14:50
* Author: yeong
*/
#include "adc.h"
extern FILE OUTPUT;
extern FILE INPUT;
#include <iostream>
using namespace std;
char mat[101][101];
int main(void) {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
#include <iostream>
using namespace std;
int gcd(int a, int b) {
if (b == 0) {
return a;
}
return gcd(b, a % b);
}
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
typedef struct __ms {
int num, dir;
__ms(int num, int dir) : num(num), dir(dir) {}
} ms;
#include <queue>
#include <tuple>
#include <vector>
#include <cstring>
#include <iostream>
using namespace std;
#define max(n, m) n > m ? n : m