This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// main.cpp | |
// lordofminecraft | |
// | |
// Created by XadillaX on 14-4-28. | |
// Copyright (c) 2014å¹´ XadillaX. All rights reserved. | |
// | |
#include <cstdio> | |
#include <cstdlib> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define _CRT_SECURE_NO_WARNINGS | |
#include <iostream> | |
#include <cstring> | |
#include <cstdio> | |
#include <cstdlib> | |
#include <algorithm> | |
using namespace std; | |
#define MAXINT 2147483647 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define _CRT_SECURE_NO_WARNINGS | |
#include <iostream> | |
#include <cstring> | |
#include <map> | |
#include <string> | |
using namespace std; | |
char str[1048576 + 10]; | |
map<string, int> times; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// 1002.c | |
// HDU | |
// | |
// Created by XadillaX on 13-9-15. | |
// Copyright (c) 2013年 XadillaX. All rights reserved. | |
// | |
#include <iostream> | |
#include <cstdio> | |
#include <algorithm> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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"); |
NewerOlder