Skip to content

Instantly share code, notes, and snippets.

@domen111
domen111 / firmwareupdater-payload.zip
Last active December 23, 2019 06:55
justCTF 2019 Writeup
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@domen111
domen111 / index.html
Created December 17, 2017 15:33
Default HTML
<!DOCTYPE html>
<html>
<head>
<title>Title</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
</body>
@domen111
domen111 / 2016-lecture-data-structure.md
Last active August 23, 2016 08:44
TFcis 2016 summer: Data Structure

TFcis 2016 summer: Data Structure

Index

  1. Segment Tree
  2. BIT (Binary Indexed Tree)
  3. Treap
  4. Persistence Data Structure (Copy on write)

Segment Tree

RMQ: Range Maximum/Minimum Query

@domen111
domen111 / 1-sort.cpp
Last active August 29, 2015 14:26
STL
//sort, reverse
#include <algorithm>
#include <cstdio>
#include <vector>
using namespace std;
int cmp(int a,int b){
return a>b;//小於:由小而大 ,大於:由大而小
@domen111
domen111 / codeforces.md
Last active April 26, 2019 07:45
Codeforces簡單介紹

#Codeforces簡單介紹 供首次參加者快速了解規則
//編輯中

###Rating

  • codeforces有個rating的制度,代表你的能力
@domen111
domen111 / GCJ.md
Last active March 25, 2019 05:16
Google Code Jam 賽制介紹