Skip to content

Instantly share code, notes, and snippets.

View adept's full-sized avatar

Dmitry Astapov adept

View GitHub Profile
@adept
adept / bf.c
Last active December 11, 2015 11:38 — forked from rblaze/bf.c
Вот это работает 2.5 минуты, из которых 40 секунд - зачитывание файла.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
const int infinity = 2147483647;
struct edge_t {
int v1;
int v2;
int cost;