Skip to content

Instantly share code, notes, and snippets.

View XadillaX's full-sized avatar
🦧
A mess.

Khaidi Chu XadillaX

🦧
A mess.
View GitHub Profile
#include <time.h>
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <sys/time.h>
#include <errno.h>
#include <string.h>
#include "popen_plus/popen_plus.h"
//
// main.cpp
// lordofminecraft
//
// Created by XadillaX on 14-4-28.
// Copyright (c) 2014å¹´ XadillaX. All rights reserved.
//
#include <cstdio>
#include <cstdlib>
@XadillaX
XadillaX / PAT1072.cpp
Created November 3, 2013 18:02
Gas Station 4 FBR
#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <cstring>
#include <cstdio>
#include <cstdlib>
#include <algorithm>
using namespace std;
#define MAXINT 2147483647
@XadillaX
XadillaX / PAT1071.cpp
Created November 3, 2013 15:15
Speech Patterns 4 FBR
#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <cstring>
#include <map>
#include <string>
using namespace std;
char str[1048576 + 10];
map<string, int> times;
//
// 1002.c
// HDU
//
// Created by XadillaX on 13-9-15.
// Copyright (c) 2013年 XadillaX. All rights reserved.
//
#include <iostream>
#include <cstdio>
#include <algorithm>
@XadillaX
XadillaX / prob with callback.js
Last active December 19, 2015 18:18
The last several lines. It said that s, msg and base header was undefined.
/**
* Created with JetBrains WebStorm.
* User: xadillax
* Date: 7/14/13
* Time: 9:44 PM
* NBUT Online Judge Impl.
*/
var base = require("../base");
var util = require("util");