2010-12-01から1ヶ月間の記事一覧
DiceRotationDPなどで小さなgoalx,goalyについて調べると法則が見える。 class DiceRotation{public: int theCount( int goalx, int goaly ) { int ans = 0; if ( goalx == 4 ) ans += goaly + 1; if ( goaly == 4 ) ans += goalx + 1; if ( goalx >= 2 && g…
DiceRotationDPなどで小さなgoalx,goalyについて調べると法則が見える。 class DiceRotation{public: int theCount( int goalx, int goaly ) { int ans = 0; if ( goalx == 4 ) ans += goaly + 1; if ( goaly == 4 ) ans += goalx + 1; if ( goalx >= 2 && g…