Skip to content

Instantly share code, notes, and snippets.

View dev-owner's full-sized avatar
👋
hello guys

jaewoo sung dev-owner

👋
hello guys
View GitHub Profile
@dev-owner
dev-owner / 6267.cc
Created July 20, 2016 02:03 — forked from Baekjoon/6267.cc
6267
#include <iostream>
#include <numeric>
#include <string>
#include <queue>
#include <vector>
using namespace std;
struct MCMF {
struct Edge {
int to;
int capacity;
@dev-owner
dev-owner / Main.java
Created July 20, 2016 02:03 — forked from Baekjoon/Main.java
1000 Java
public class Main {
public static void main(String[] args) {
new Main().solve();
}
void solve(){
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
@dev-owner
dev-owner / test
Created July 20, 2016 01:59
algorithm
test