<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<oembed>
  <author_name>haraduka</author_name>
  <author_url>https://blog.hatena.ne.jp/haraduka/</author_url>
  <blog_title>haraduka's diary</blog_title>
  <blog_url>https://haraduka.hatenadiary.jp/</blog_url>
  <categories>
    <anon>AtCoder</anon>
  </categories>
  <description>ゲーム系の苦手な問題。先手が勝てば勝ち、もし負けることがあれば、負け、という感じで考えるといいっぽい？まず全探索のイメージから入って、そのあとメモ化できるからメモ化しよう、みたいに考えるのがいい。全探索を考えるのが全てにおいて最初。 int H, W; string S[101]; int memo[101][101]; bool dfs(int x, int y){ if(memo[y][x] != -1) return (bool)memo[y][x]; if(x &lt; 0 || x &gt;= W || y &lt; 0 || y &gt;= H || S[y][x] == '#') return memo…</description>
  <height>190</height>
  <html>&lt;iframe src=&quot;https://hatenablog-parts.com/embed?url=https%3A%2F%2Fharaduka.hatenadiary.jp%2Fentry%2F2015%2F06%2F16%2F204125&quot; title=&quot;ARC038 B問題 マス目と駒 - haraduka&amp;#39;s diary&quot; class=&quot;embed-card embed-blogcard&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;display: block; width: 100%; height: 190px; max-width: 500px; margin: 10px 0px;&quot;&gt;&lt;/iframe&gt;</html>
  <image_url></image_url>
  <provider_name>Hatena Blog</provider_name>
  <provider_url>https://hatena.blog</provider_url>
  <published>2015-06-16 20:41:25</published>
  <title>ARC038 B問題 マス目と駒</title>
  <type>rich</type>
  <url>https://haraduka.hatenadiary.jp/entry/2015/06/16/204125</url>
  <version>1.0</version>
  <width>100%</width>
</oembed>
