エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
記事へのコメント2件
- 注目コメント
- 新着コメント
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
solve_text_maze.cpp
// http://okajima.air-nifty.com/b/2010/01/post-abc6.html // 2010-1-12 10:56 http://twitter.com/ko... // http://okajima.air-nifty.com/b/2010/01/post-abc6.html // 2010-1-12 10:56 http://twitter.com/koizuka #include <iostream> #include <string> #include <vector> #include <deque> #include <map> struct coord { int x; int y; coord(int _x = 0, int _y = 0) :x(_x), y(_y) {} }; bool operator < ( const coord& a, const coord& b ) { if ( a.y != b.y ) { return a.y < b.y; } return a.x < b.x; } coord operator +(




2010/01/15 リンク