{"id":377,"date":"2013-03-31T17:17:00","date_gmt":"2013-03-31T09:17:00","guid":{"rendered":"http:\/\/nike0good.jp1.rpvhost.net\/281"},"modified":"2013-03-31T17:17:00","modified_gmt":"2013-03-31T09:17:00","slug":"poj_2553_the_bottom_of_a_graph-reduction_of_degrees_obtained","status":"publish","type":"post","link":"https:\/\/nike0good.com\/?p=377","title":{"rendered":"POJ 2553(The Bottom of a Graph-\u7f29\u70b9\u6c42\u51fa\u5ea6)"},"content":{"rendered":"<table border=\"0\" width=\"100%\" background=\"http:\/\/poj.org\/images\/table_back.jpg\" style=\"font-family:\u5b8b\u4f53\">\n<tbody>\n<tr>\n<td>\n<div style=\"position:absolute; right:10px\">Language:<select size=\"1\"><option value=\"default\" selected=\"selected\"><br \/>\nDefault<\/option><\/select><\/div>\n<div class=\"ptt\" lang=\"en-US\" style=\"text-align:center; font-size:18pt; font-weight:bold; color:blue\">\nThe Bottom of a Graph<\/div>\n<div class=\"plm\" style=\"text-align:center; font-size:12pt\">\n<table align=\"center\">\n<tbody>\n<tr>\n<td><strong>Time Limit:<\/strong>&nbsp;3000MS<\/td>\n<td width=\"10px\">&nbsp;<\/td>\n<td><strong>Memory Limit:<\/strong>&nbsp;65536K<\/td>\n<\/tr>\n<tr>\n<td><strong>Total Submissions:<\/strong>&nbsp;7308<\/td>\n<td width=\"10px\">&nbsp;<\/td>\n<td><strong>Accepted:<\/strong>&nbsp;3003<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<p class=\"pst\" style=\"font-size:18pt; font-weight:bold; color:blue\">Description<\/p>\n<div class=\"ptx\" lang=\"en-US\" style=\"font-family:'Times New Roman',Times,serif; font-size:12pt\">\nWe will use the following (standard) definitions from graph theory. Let&nbsp;<em>V<\/em>&nbsp;be a nonempty and finite set, its elements being called vertices (or nodes). Let&nbsp;<em>E<\/em>&nbsp;be a subset of the Cartesian product&nbsp;<em>V\u00d7V<\/em>, its elements being called edges.<br \/>\n Then&nbsp;<em>G=(V,E)<\/em>&nbsp;is called a directed graph.&nbsp;<br \/>\nLet&nbsp;<em>n<\/em>&nbsp;be a positive integer, and let&nbsp;<em>p=(e<sub>1<\/sub>,...,e<sub>n<\/sub>)<\/em>&nbsp;be a sequence of length&nbsp;<em>n<\/em>&nbsp;of edges&nbsp;<em>e<sub>i<\/sub>\u2208E<\/em>&nbsp;such that&nbsp;<em>e<sub>i<\/sub>=(v<sub>i<\/sub>,v<sub>i&#43;1<\/sub>)<\/em>&nbsp;for a sequence of vertices&nbsp;<em>(v<sub>1<\/sub>,...,v<sub>n&#43;1<\/sub>)<\/em>.<br \/>\n Then&nbsp;<em>p<\/em>&nbsp;is called a path from vertex&nbsp;<em>v<sub>1<\/sub><\/em>&nbsp;to vertex&nbsp;<em>v<sub>n&#43;1<\/sub><\/em>&nbsp;in&nbsp;<em>G<\/em>&nbsp;and we say that&nbsp;<em>v<sub>n&#43;1<\/sub><\/em>&nbsp;is reachable from&nbsp;<em>v<sub>1<\/sub><\/em>, writing&nbsp;<em>(v<sub>1<\/sub>\u2192v<sub>n&#43;1<\/sub>)<\/em>.&nbsp;<br \/>\nHere are some new definitions. A node&nbsp;<em>v<\/em>&nbsp;in a graph&nbsp;<em>G=(V,E)<\/em>&nbsp;is called a sink, if for every node&nbsp;<em>w<\/em>&nbsp;in&nbsp;<em>G<\/em>&nbsp;that is reachable from&nbsp;<em>v<\/em>,&nbsp;<em>v<\/em>&nbsp;is also reachable from&nbsp;<em>w<\/em>. The bottom of a graph is the subset of<br \/>\n all nodes that are sinks, i.e.,<em>bottom(G)={v\u2208V|\u2200w\u2208V:(v\u2192w)\u21d2(w\u2192v)}<\/em>. You have to calculate the bottom of certain graphs.<\/div>\n<p class=\"pst\" style=\"font-size:18pt; font-weight:bold; color:blue\">Input<\/p>\n<div class=\"ptx\" lang=\"en-US\" style=\"font-family:'Times New Roman',Times,serif; font-size:12pt\">\nThe input contains several test cases, each of which corresponds to a directed graph&nbsp;<em>G<\/em>. Each test case starts with an integer number&nbsp;<em>v<\/em>, denoting the number of vertices of&nbsp;<em>G=(V,E)<\/em>, where the vertices will be identified by the integer<br \/>\n numbers in the set&nbsp;<em>V={1,...,v}<\/em>. You may assume that&nbsp;<em>1&lt;=v&lt;=5000<\/em>. That is followed by a non-negative integer&nbsp;<em>e<\/em>&nbsp;and, thereafter,&nbsp;<em>e<\/em>&nbsp;pairs of vertex identifiers&nbsp;<em>v<sub>1<\/sub>,w<sub>1<\/sub>,...,v<sub>e<\/sub>,w<sub>e<\/sub><\/em>&nbsp;with<br \/>\n the meaning that&nbsp;<em>(v<sub>i<\/sub>,w<sub>i<\/sub>)\u2208E<\/em>. There are no edges other than specified by these pairs. The last test case is followed by a zero.<\/div>\n<p class=\"pst\" style=\"font-size:18pt; font-weight:bold; color:blue\">Output<\/p>\n<div class=\"ptx\" lang=\"en-US\" style=\"font-family:'Times New Roman',Times,serif; font-size:12pt\">\nFor each test case output the bottom of the specified graph on a single line. To this end, print the numbers of all nodes that are sinks in sorted order separated by a single space character. If the bottom is empty, print an empty line.<img decoding=\"async\" src=\"http:\/\/nike0good.jp1.rpvhost.net\/wp-content\/uploads\/csdn\/other_site\/img_my_1364720779_5762.png\" alt=\"\" \/><\/div>\n<p class=\"pst\" style=\"font-size:18pt; font-weight:bold; color:blue\">Sample Input<\/p>\n<pre class=\"sio\" style=\"font-family:'Courier New',Courier,monospace; font-size:12pt\">3 3\n1 3 2 3 3 1\n2 1\n1 2\n0\n<\/pre>\n<p class=\"pst\" style=\"font-size:18pt; font-weight:bold; color:blue\">Sample Output<\/p>\n<pre class=\"sio\" style=\"font-family:'Courier New',Courier,monospace; font-size:12pt\">1 3\n2\n<\/pre>\n<p class=\"pst\" style=\"font-size:18pt; font-weight:bold; color:blue\">Source<\/p>\n<div class=\"ptx\" lang=\"en-US\" style=\"font-family:'Times New Roman',Times,serif; font-size:12pt\">\n<a href=\"http:\/\/poj.org\/searchproblem?field=source&amp;key=Ulm+Local+2003\" style=\"text-decoration:initial\">Ulm Local 2003<\/a><\/div>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p><\/p>\n<p><span style=\"font-size:14px\">Tarjen\u7f29\u70b9\u7edf\u8ba1\u51fa\u5ea6\u3002<\/span><\/p>\n<p><span style=\"font-size:14px\"><br \/>\n<\/span><\/p>\n<p><span style=\"font-size:14px\"><\/span><\/p>\n<pre name=\"code\" class=\"cpp\">#include&lt;cstdio&gt;\n#include&lt;cstdlib&gt;\n#include&lt;algorithm&gt;\n#include&lt;functional&gt;\n#include&lt;cstring&gt;\n#include&lt;iostream&gt;\nusing namespace std;\n#define MAXN (5000+10)\n#define MAXM (1000000+10)\nint n,m,h[MAXN],t[MAXN],dfs[MAXN],tim,kind,s[MAXN],tot;\nbool b[MAXN];\nint edge[MAXM],next[MAXM],pre[MAXN],size;\nint x[MAXM],y[MAXM],numk[MAXN];\nvoid addedge(int u,int v)\n{\n\tedge[++size]=v;\n\tnext[size]=pre[u];\n\tpre[u]=size;\n}\nvoid tar(int u)\n{\n\tdfs[u]=t[u]=++tim;b[u]=1;s[++tot]=u;\n\tfor (int p=pre[u];p;p=next[p])\n\t{\n\t\tint &amp;v=edge[p];\n\t\tif (!b[v]) tar(v),dfs[u]=min(dfs[u],dfs[v]);\n\t\telse if (!h[v]) dfs[u]=min(dfs[u],t[v]);  \/\/\u4fdd\u8bc1\u6307\u5411\u7956\u5148\n\t}\n\tif (dfs[u]==t[u])\n\t{\n\t\tkind++;\n\t\twhile (s[tot]!=u) h[s[tot--]]=kind,numk[kind]++;\n\t\th[s[tot--]]=kind;numk[kind]++;\n\n\t}\n}\nint outdegree[MAXN];\nint main()\n{\n\twhile (scanf(&quot;%d&quot;,&amp;n)&amp;&amp;n)\n\t{\n\t\tscanf(&quot;%d&quot;,&amp;m);\n\t\ttot=size=tim=kind=0;\n\t\tmemset(h,0,sizeof(h));\n\t\tmemset(t,0,sizeof(t));\n\t\tmemset(dfs,0,sizeof(dfs));\n\t\tmemset(s,0,sizeof(s));\n\t\tmemset(pre,0,sizeof(pre));\n\t\tmemset(b,0,sizeof(b));\n\t\tmemset(numk,0,sizeof(numk));\n\t\tmemset(outdegree,0,sizeof(outdegree));\n\n\t\tfor (int i=1;i&lt;=m;i++)\n\t\t{\n\t\t\tscanf(&quot;%d%d&quot;,&amp;x[i],&amp;y[i]);\n\t\t\taddedge(x[i],y[i]);\n\t\t}\n\t\tfor (int i=1;i&lt;=n;i++) if (!b[i]) tar(i);\n\/\/\t\tfor (int i=1;i&lt;=n;i++) cout&lt;&lt;h[i]&lt;&lt;' ';cout&lt;&lt;endl;\n\t\tfor (int i=1;i&lt;=m;i++)\n\t\t{\n\t\t\tif (h[x[i]]^h[y[i]]) outdegree[h[x[i]]]++;\n\t\t}\n\t\t\/*\n\t\tint ans=0;\n\t\tfor (int i=1;i&lt;=kind;i++)\n\t\t\tif (!outdegree[i]) ans+=numk[i];\n\t\tcout&lt;&lt;ans&lt;&lt;endl;\n\t\t*\/\n\t\tbool flag=0;\n\t\tfor (int i=1;i&lt;=n;i++)\n\t\t\tif (!outdegree[h[i]])\n\t\t\t{\n\t\t\t\tif (flag) printf(&quot; &quot;);else flag=1;printf(&quot;%d&quot;,i);\n\t\t\t}\n\n\n\t\/\/\tcout&lt;&lt;ans&lt;&lt;endl;\n\t\tcout&lt;&lt;endl;\n\t}\n\treturn 0;\n}\n<\/pre>\n<\/p>\n<p><span style=\"font-size:14px; color:#333399; font-family:\u5b8b\u4f53; font-size:14px\"><\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Language: Default The Bottom of a Graph Time Limit:&#038;nbs [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_coblocks_attr":"","_coblocks_dimensions":"","_coblocks_responsive_height":"","_coblocks_accordion_ie_support":"","footnotes":""},"categories":[3],"tags":[119],"class_list":["post-377","post","type-post","status-publish","format-standard","hentry","category-defaultcategory","tag-connected_graph"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>POJ 2553(The Bottom of a Graph-\u7f29\u70b9\u6c42\u51fa\u5ea6) - nike0good<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/nike0good.com\/?p=377\" \/>\n<meta property=\"og:locale\" content=\"zh_CN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"POJ 2553(The Bottom of a Graph-\u7f29\u70b9\u6c42\u51fa\u5ea6) - nike0good\" \/>\n<meta property=\"og:description\" content=\"Language: Default The Bottom of a Graph Time Limit:&amp;nbs [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/nike0good.com\/?p=377\" \/>\n<meta property=\"og:site_name\" content=\"nike0good\" \/>\n<meta property=\"article:published_time\" content=\"2013-03-31T09:17:00+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/nike0good.jp1.rpvhost.net\/wp-content\/uploads\/csdn\/other_site\/img_my_1364720779_5762.png\" \/>\n<meta name=\"author\" content=\"nike0good\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u4f5c\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"nike0good\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 \u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/nike0good.com\\\/?p=377#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/nike0good.com\\\/?p=377\"},\"author\":{\"name\":\"nike0good\",\"@id\":\"https:\\\/\\\/nike0good.com\\\/#\\\/schema\\\/person\\\/4defa38da89de87e400861e73396baad\"},\"headline\":\"POJ 2553(The Bottom of a Graph-\u7f29\u70b9\u6c42\u51fa\u5ea6)\",\"datePublished\":\"2013-03-31T09:17:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/nike0good.com\\\/?p=377\"},\"wordCount\":420,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/nike0good.com\\\/?p=377#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/nike0good.jp1.rpvhost.net\\\/wp-content\\\/uploads\\\/csdn\\\/other_site\\\/img_my_1364720779_5762.png\",\"keywords\":[\"\u8fde\u901a\u56fe\"],\"articleSection\":[\"DefaultCategory\"],\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/nike0good.com\\\/?p=377#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/nike0good.com\\\/?p=377\",\"url\":\"https:\\\/\\\/nike0good.com\\\/?p=377\",\"name\":\"POJ 2553(The Bottom of a Graph-\u7f29\u70b9\u6c42\u51fa\u5ea6) - nike0good\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/nike0good.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/nike0good.com\\\/?p=377#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/nike0good.com\\\/?p=377#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/nike0good.jp1.rpvhost.net\\\/wp-content\\\/uploads\\\/csdn\\\/other_site\\\/img_my_1364720779_5762.png\",\"datePublished\":\"2013-03-31T09:17:00+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/nike0good.com\\\/#\\\/schema\\\/person\\\/4defa38da89de87e400861e73396baad\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/nike0good.com\\\/?p=377#breadcrumb\"},\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/nike0good.com\\\/?p=377\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-Hans\",\"@id\":\"https:\\\/\\\/nike0good.com\\\/?p=377#primaryimage\",\"url\":\"http:\\\/\\\/nike0good.jp1.rpvhost.net\\\/wp-content\\\/uploads\\\/csdn\\\/other_site\\\/img_my_1364720779_5762.png\",\"contentUrl\":\"http:\\\/\\\/nike0good.jp1.rpvhost.net\\\/wp-content\\\/uploads\\\/csdn\\\/other_site\\\/img_my_1364720779_5762.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/nike0good.com\\\/?p=377#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/nike0good.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"POJ 2553(The Bottom of a Graph-\u7f29\u70b9\u6c42\u51fa\u5ea6)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/nike0good.com\\\/#website\",\"url\":\"https:\\\/\\\/nike0good.com\\\/\",\"name\":\"nike0good\",\"description\":\"\u6709\u6240\u4f5c\u4e3a\u662f\u4eba\u751f\u7684\u6700\u9ad8\u5883\u754c\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/nike0good.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"zh-Hans\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/nike0good.com\\\/#\\\/schema\\\/person\\\/4defa38da89de87e400861e73396baad\",\"name\":\"nike0good\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-Hans\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8e5fa08d5c367a1a6fb5ff13bb10ed5a331f981513256951290ae42322da6854?s=96&d=identicon&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8e5fa08d5c367a1a6fb5ff13bb10ed5a331f981513256951290ae42322da6854?s=96&d=identicon&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8e5fa08d5c367a1a6fb5ff13bb10ed5a331f981513256951290ae42322da6854?s=96&d=identicon&r=g\",\"caption\":\"nike0good\"},\"sameAs\":[\"https:\\\/\\\/nike0good.com\"],\"url\":\"https:\\\/\\\/nike0good.com\\\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"POJ 2553(The Bottom of a Graph-\u7f29\u70b9\u6c42\u51fa\u5ea6) - nike0good","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/nike0good.com\/?p=377","og_locale":"zh_CN","og_type":"article","og_title":"POJ 2553(The Bottom of a Graph-\u7f29\u70b9\u6c42\u51fa\u5ea6) - nike0good","og_description":"Language: Default The Bottom of a Graph Time Limit:&nbs [&hellip;]","og_url":"https:\/\/nike0good.com\/?p=377","og_site_name":"nike0good","article_published_time":"2013-03-31T09:17:00+00:00","og_image":[{"url":"http:\/\/nike0good.jp1.rpvhost.net\/wp-content\/uploads\/csdn\/other_site\/img_my_1364720779_5762.png","type":"","width":"","height":""}],"author":"nike0good","twitter_card":"summary_large_image","twitter_misc":{"\u4f5c\u8005":"nike0good","\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4":"4 \u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/nike0good.com\/?p=377#article","isPartOf":{"@id":"https:\/\/nike0good.com\/?p=377"},"author":{"name":"nike0good","@id":"https:\/\/nike0good.com\/#\/schema\/person\/4defa38da89de87e400861e73396baad"},"headline":"POJ 2553(The Bottom of a Graph-\u7f29\u70b9\u6c42\u51fa\u5ea6)","datePublished":"2013-03-31T09:17:00+00:00","mainEntityOfPage":{"@id":"https:\/\/nike0good.com\/?p=377"},"wordCount":420,"commentCount":0,"image":{"@id":"https:\/\/nike0good.com\/?p=377#primaryimage"},"thumbnailUrl":"http:\/\/nike0good.jp1.rpvhost.net\/wp-content\/uploads\/csdn\/other_site\/img_my_1364720779_5762.png","keywords":["\u8fde\u901a\u56fe"],"articleSection":["DefaultCategory"],"inLanguage":"zh-Hans","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/nike0good.com\/?p=377#respond"]}]},{"@type":"WebPage","@id":"https:\/\/nike0good.com\/?p=377","url":"https:\/\/nike0good.com\/?p=377","name":"POJ 2553(The Bottom of a Graph-\u7f29\u70b9\u6c42\u51fa\u5ea6) - nike0good","isPartOf":{"@id":"https:\/\/nike0good.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/nike0good.com\/?p=377#primaryimage"},"image":{"@id":"https:\/\/nike0good.com\/?p=377#primaryimage"},"thumbnailUrl":"http:\/\/nike0good.jp1.rpvhost.net\/wp-content\/uploads\/csdn\/other_site\/img_my_1364720779_5762.png","datePublished":"2013-03-31T09:17:00+00:00","author":{"@id":"https:\/\/nike0good.com\/#\/schema\/person\/4defa38da89de87e400861e73396baad"},"breadcrumb":{"@id":"https:\/\/nike0good.com\/?p=377#breadcrumb"},"inLanguage":"zh-Hans","potentialAction":[{"@type":"ReadAction","target":["https:\/\/nike0good.com\/?p=377"]}]},{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"https:\/\/nike0good.com\/?p=377#primaryimage","url":"http:\/\/nike0good.jp1.rpvhost.net\/wp-content\/uploads\/csdn\/other_site\/img_my_1364720779_5762.png","contentUrl":"http:\/\/nike0good.jp1.rpvhost.net\/wp-content\/uploads\/csdn\/other_site\/img_my_1364720779_5762.png"},{"@type":"BreadcrumbList","@id":"https:\/\/nike0good.com\/?p=377#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/nike0good.com\/"},{"@type":"ListItem","position":2,"name":"POJ 2553(The Bottom of a Graph-\u7f29\u70b9\u6c42\u51fa\u5ea6)"}]},{"@type":"WebSite","@id":"https:\/\/nike0good.com\/#website","url":"https:\/\/nike0good.com\/","name":"nike0good","description":"\u6709\u6240\u4f5c\u4e3a\u662f\u4eba\u751f\u7684\u6700\u9ad8\u5883\u754c","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/nike0good.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"zh-Hans"},{"@type":"Person","@id":"https:\/\/nike0good.com\/#\/schema\/person\/4defa38da89de87e400861e73396baad","name":"nike0good","image":{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"https:\/\/secure.gravatar.com\/avatar\/8e5fa08d5c367a1a6fb5ff13bb10ed5a331f981513256951290ae42322da6854?s=96&d=identicon&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/8e5fa08d5c367a1a6fb5ff13bb10ed5a331f981513256951290ae42322da6854?s=96&d=identicon&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/8e5fa08d5c367a1a6fb5ff13bb10ed5a331f981513256951290ae42322da6854?s=96&d=identicon&r=g","caption":"nike0good"},"sameAs":["https:\/\/nike0good.com"],"url":"https:\/\/nike0good.com\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/nike0good.com\/index.php?rest_route=\/wp\/v2\/posts\/377","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/nike0good.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/nike0good.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/nike0good.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/nike0good.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=377"}],"version-history":[{"count":0,"href":"https:\/\/nike0good.com\/index.php?rest_route=\/wp\/v2\/posts\/377\/revisions"}],"wp:attachment":[{"href":"https:\/\/nike0good.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=377"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/nike0good.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=377"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/nike0good.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=377"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}