2011-04-15から1日間の記事一覧

#include map, set

mapを使う機会は余りなさそうだけど.よく使う場面が人物(string型)と数字を関連させたい時. table表を作って動的計画法を行なう時とかにも結構大きな効果がある. 一番いいところはtableにすると見やすいところ.そして何より、 //aaaaaaは初めていれる文…

switch文を実験してみる.

//4を選択--> 1~4までが順番に実行される. 4, 3, 2, 1とやると結果が異なる。 int year; //仮引数。 int sw = 1; while(year >= 1 && sw //ifを使う. if(year >= 1) ... if(year >= 2) ... if(year >= 3) ... if(year >= 4) ... if(year >= 5) ... yearがi…

SRM167 div2 500

問題文 A collection of particles is contained in a linear chamber. They all have the same speed, but some are headed toward the right and others are headed toward the left. These particles can pass through each other without disturbing the…