Skip to content

Instantly share code, notes, and snippets.

View dvdg6566's full-sized avatar

Daniel Choo dvdg6566

  • Singapore
View GitHub Profile
@dvdg6566
dvdg6566 / swimmingpool.cpp
Created January 18, 2021 16:22
Swimming Pool (2021 NOI Selection Day 1 Problem 3)
#include<iostream>
#include<vector>
#include<set>
#include<algorithm>
#include <assert.h>
using namespace std;
typedef pair<int,int> pi;
typedef vector<int> vi;
#define mp make_pair
#define pb emplace_back