data

// int 최대값
#define INF 2147483647
// -INF는 -2147483648

// 다익스트라 dijkstra
// 오름차순 priority_queue<pair>
priority_queue<pair<int, int>, vector<pair<int, int>>, greater<> > pq;

 

백준 frame

#include <bits/stdc++.h>
using namespace std;

int main()
{
	ios::sync_with_stdio(false); cin.tie(NULL);



	return 0;
}

 

프로그래머스 frame

#include <bits/stdc++.h>
using namespace std;

void solution()
{

}

void main()
{
	ios::sync_with_stdio(false); cin.tie(NULL);

	cout << solution();
}