poj 3331 The Idiot of the Year Contest! The Idiot of the Year Contest!
C++中explicit,explicit【explicit】 1.用於抑制隱式轉換,即: X x = 12; // error X x(12); // ok
BZOJ 2823 AHOI2012 信號塔 計算幾何 題目大意:給定n個點(n<=50W),求最小圓覆蓋 逗我?n<=50W?最小圓覆蓋?O(n^3)?
leetcode:Valid Palindrome 一、 題目 題目給出一個字符串,求出它是否為回文字符串,其中只有字母和數字是有效字符,其他的字符
BZOJ 2823 AHOI 2012 ÐźÅËþ ͹°ü+×îСԲ¸²¸Ç ÌâÄ¿´óÒ⣺¸ø³öƽÃæÉÏn¸öµã£¬Çó×îСԲ
Merge k Sorted Lists -- leetcode Merge k sorted linked lists and return it as
[LeetCode]Majority Element Given an array of size n, find the majority eleme
poj 2115 C Looooops 擴展歐幾裡得 題意: 在while(x=a;x!=b;x+=c) statement;中,問statemen
UVa 10935 - Throwing cards away I 模擬隊列操作。 注意當n == 1時第一行輸出末尾沒有空格。PE一次~~
MyMathLib系列(行列式計算4--向量部分) 1)將向量組進行消元,變換成階梯矩陣,這是求向量組的極大線性無關組的基本算法。這個方法在前面曾經給出過,