--- title: 第一次讀書會 tags: article --- <style> .blue{color: #3030F5;} .red{color: red;} .yell{color: #d1d100;} .gree{color: #009E00;} .gray{color: #808080;} </style> # 程式網頁推薦 ### 新手推薦:難度由簡至難 1. [資訊之芽](https://neoj.sprout.tw/group/29/) <font color=gray>- 組別C(20)為C/C++的題目庫,且另附Python題庫</font> 2. [台中女中解題系統(Green Judge)](http://www.tcgs.tc.edu.tw:1218/) <font color=gray>- 基礎題庫與初級題庫極推薦全部刷完,大多題目都偏簡單</font> 4. [Formosa Online Judge](https://oj.nctu.edu.tw/groups/32/bulletins) <font color=gray>- 交大線上解題系統,組別選 計算機概論與程式設計,為交大目前計概的題目</font> 3. [TOI線上練習賽](https://toi-reg.csie.ntnu.edu.tw/tasks.php) <font color=gray>- 定期舉辦線上測試,分為新手組與潛力組,附歷屆題解與參考程式碼,主要針對高中學生</font> ### 程式題庫推薦: 1. [高中程式解題系統](https://zerojudge.tw/) 2. [建中程式解題系統](https://tioj.ck.tp.edu.tw/) <font color=gray>- 資訊學科競賽之常駐學校,常收錄各種各式各樣的難題</font> 4. [Leetcode](https://leetcode.com/problemset/all/) <font color=gray>- 題目分類多、區分難度、支援各種語言</font> 4. [Uva](https://onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8) <font color=gray>- 超大題目庫,大多比賽與程式檢定(如CPE)皆採自Uva</font> <font color=gray>- CPE歷屆題目可以參考此網頁: [CPE歷屆題目星等](http://par.cse.nsysu.edu.tw/~advprog/star.php)</font> 5. [CSES](https://cses.fi/problemset/) 6. [CodeWars](https://www.codewars.com/dashboard) <font color=gray>- 程式能力分級,題庫多且支援多語言,答題後可以參考別人的程式碼</font> ### 競技程式與演算法題庫推薦: 1. [資訊之芽 (Algo)](https://neoj.sprout.tw/group/31/) <font color=gray>- 組別Algo(a+b),範圍涉及排序、貪婪、DP、最小路徑、線段樹...,能全對的都是鬼!</font> <font color=gray>- 備註:題庫每年會刷新一次,因為題庫是跟隨資訊之芽課程進度跑的</font> 2. [Formosa Online Judge](https://oj.nctu.edu.tw/groups/) <font color=gray>- 交大的「競技程式設計」課程,統整許多歷屆資訊競賽的題目</font> <font color=gray>- 其餘課程也可於交大的解題系統裡面找,交大的開放性資源很多的!</font> 3. [Codeforce](https://codeforces.com/) <font color=gray>- 時常會舉辦線上程式競賽,會有各自的積分(Rating),題目難度偏難</font> <font color=gray>- Div.3難度最低、Div.1難度最高,但是Div.3答不上3題基本上就會掉分,純新手誤觸!</font> <font color=gray> (其實我都是靠著打Div.2爬分,因為Div.3有夠難爬(#</font> --- # 體驗一下線上解題吧 篩選了幾題大家應該有辦法做出來的題目, 預計會在這禮拜周末或下禮拜在這個Hackmd上附上題解, ~~順便附上縮短和優化過的程式碼(#~~ 1. Uva : [100 - The 3n+1 problem](https://onlinejudge.org/index.php?option=onlinejudge&Itemid=8&page=show_problem&problem=36) 2. Zerojudge : [e800 影片推薦 (TOI新手同好會)](https://zerojudge.tw/ShowProblem?problemid=e800) 3. Zerojudge : [e799 資工系的浪漫 (TOI新手同好會)](https://zerojudge.tw/ShowProblem?problemid=e799) 4. Uva : [272 - TEX Quotes (CPE 1星選題)](https://onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=4&page=show_problem&problem=208) ## 以下是各題的提示 //////////////////////////防雷封鎖線////////////////////////// //////////////////////////防雷封鎖線////////////////////////// //////////////////////////防雷封鎖線////////////////////////// //////////////////////////防雷封鎖線////////////////////////// //////////////////////////防雷封鎖線////////////////////////// //////////////////////////防雷封鎖線////////////////////////// //////////////////////////防雷封鎖線////////////////////////// //////////////////////////防雷封鎖線////////////////////////// //////////////////////////防雷封鎖線////////////////////////// //////////////////////////防雷封鎖線////////////////////////// //////////////////////////防雷封鎖線////////////////////////// //////////////////////////防雷封鎖線////////////////////////// //////////////////////////防雷封鎖線////////////////////////// //////////////////////////防雷封鎖線////////////////////////// //////////////////////////防雷封鎖線////////////////////////// //////////////////////////防雷封鎖線////////////////////////// //////////////////////////防雷封鎖線////////////////////////// //////////////////////////防雷封鎖線////////////////////////// //////////////////////////防雷封鎖線////////////////////////// //////////////////////////防雷封鎖線////////////////////////// //////////////////////////防雷封鎖線////////////////////////// ### Hint 1. Uva 100 : loop or function 2. e800 : struct、string、float、sort 3. e799 : 對,又是二進位,可以用二維、一維、或是不用陣列,記得long long int。 4. Uva 272 : 可以用C-string逐char慢慢抓,或是用getline一次抓一行。 ###### posted date: `2020.12.16`