ITSA-judge
nkfustKai
这个作者很懒,什么都没留下…
展开
-
ITSA [C_ST42-易] 子字串出現次數
Problemhttp://e-tutor.itsa.org.tw/e-Tutor/mod/programming/view.php?a=1376Thinking使用 KMP algo 去算匹配成功的次數Solution#include<iostream> using namespace std; // KMP algo void next(string p, int *f){原创 2016-08-28 13:12:25 · 970 阅读 · 0 评论 -
UVA 1225 Digit Counting
Problem第一個輸入為testcase次數 第二個數字為n代表從1寫到n寫在一起總共有幾個0-9總共出現多少次, example: 1. n = 3, 123這串數字裡0-9總共出現多少次 2. n = 13, 12345678910111213這串數字裡0-9總共出現多少次Solution// UVa:1225-Digit Counting#include<iostream>u原创 2016-08-28 22:43:07 · 749 阅读 · 0 评论 -
ITSA [C_MM115-中] 奇妙數列
Problemhttp://e-tutor.itsa.org.tw/e-Tutor/mod/programming/view.php?id=2969ThinkingTODOSolution#include <iostream>#include <set>using namespace std;int main(){ int num; while(cin >> num){原创 2016-08-25 12:12:33 · 732 阅读 · 0 评论 -
ITSA [C_MM058-中] 二項式求解
Problemhttp://e-tutor.itsa.org.tw/e-Tutor/mod/programming/view.php?a=1005ThinkingTODOSolution#include <iostream>#include <cstring>using namespace std;int main(){ int a,b,c; char str[256]="";原创 2016-08-25 14:48:01 · 548 阅读 · 0 评论 -
ITSA [C_ST53-易] 矩陣數字顯示
Problemhttp://e-tutor.itsa.org.tw/e-Tutor/mod/programming/view.php?id=8018Solution這題的技巧我一開始想不到,我是參考這裡的,看到才恍然大悟原來這麼簡單,有時候怕忘記這種技巧就把它放在文章裡了#include<iostream>#include<string>using namespace std;int main()原创 2016-08-25 19:02:54 · 2405 阅读 · 0 评论 -
ITSA [C_SO41-中] 撲克牌排序
Problemhttp://e-tutor.itsa.org.tw/e-Tutor/mod/programming/view.php?id=20772ThinkingTODOSolution#include<iostream>#include<vector>#include<algorithm>using namespace std;int POKER_PRIORITY[14] = {-1,1原创 2016-08-26 07:45:37 · 849 阅读 · 0 评论 -
Counting Sort 其實很簡單
準備工作首先,先把自己當成小學生,盡量把自己變得笨一點不要想太多, counting sort沒有任何奇淫技巧, 小學畢業就行開始今天我去上小學, 老師給了你一堆數字, 叫你把這些數字個別計數有多少個, 因為我記憶力不好, 所以最簡單的方式就是我就畫正字記號囉, 如圖:現在要你做一件事情, 看著表格然後你做以下事情: 1. 1有2個, 把1寫出來寫2次 2. 2有0個不用寫 3. 3有3原创 2016-08-25 21:34:52 · 810 阅读 · 0 评论 -
ITSA [C_SO06-中] 考試成績排名
Problemhttp://e-tutor.itsa.org.tw/e-Tutor/mod/programming/view.php?id=2271Thinking對於排序, C++有內建兩種分別是 1. std::sort 2. stable::sort 至於這兩者有什麼差別請你google. 在這邊我們使用std::sort這題題目裡要使用兩個key做排序,所以我就自己設原创 2016-08-26 15:09:04 · 890 阅读 · 0 评论