문풀 템플릿

LeeJE20·2021년 3월 12일
0

C++ 스니펫

목록 보기
1/1

// 2021-03-12 16:36 시작
// https://www.acmicpc.net/problem/11286
// 절댓값 힙
// 2021-03-12 16:21 종료
// correct: 11279

#include <iostream>
#include <string>
#include <algorithm>
#include <cmath>
#include <vector>
#include <stack>
#include <queue>
using namespace std;


/*아이디어



[시간복잡도]


[실수]


[검색(내가 잘 몰랐던 부분)]


*/


int main()
{
	cin.sync_with_stdio(false);
	cin.tie(0);
	cout.tie(0);
	
	int N; // 입력 개수
	int input; // 입력
	
	
	cin >> N;
	for (int i = 0; i < N; i++)
	{
		cin >> input;
	}
	
	
	return 0;
}


0개의 댓글