{"id":275,"date":"2018-10-30T13:39:47","date_gmt":"2018-10-30T05:39:47","guid":{"rendered":"http:\/\/SmokeyDays.top\/wordpress\/?p=275"},"modified":"2018-10-30T13:39:58","modified_gmt":"2018-10-30T05:39:58","slug":"sp1026-favorite-dice","status":"publish","type":"post","link":"http:\/\/SmokeyDays.top\/wordpress\/2018\/10\/30\/sp1026-favorite-dice\/","title":{"rendered":"sp1026 Favorite Dice"},"content":{"rendered":"<p>\u5f00\u59cb\u5b66\u4e60\u671f\u671bDP\u3002<br \/>\n\u8fd9\u662f\u4e00\u9053\u671f\u671bDP\u5165\u95e8\u9898\u3002<br \/>\n\u9996\u5148\u6211\u4eec\u8bbe\\(f[i]\\)\u8868\u793a\uff0c\u5df2\u7ecf\u53d6\u4e86\\(i\\)\u79cd\u6570\uff0c\u8ddd\u79bb\u53d6\u5b8c\u7684\u671f\u671b\u56de\u5408\u6570\u3002<br \/>\n\u6839\u636e\u6982\u7387\u7684\u57fa\u672c\u5b9a\u7406\uff0c\u6211\u4eec\u53ef\u4ee5\u77e5\u9053\uff0c\u5df2\u7ecf\u53d6\u4e86\\(k\\)\u79cd\u4ee5\u540e\uff0c\u4e0b\u4e00\u79cd\u53d6\u5230\u7684\u662f\u672a\u53d6\u5230\u8fc7\u7684\u6982\u7387\u662f\\(\\frac{n-k}{n} \\)\uff1b\u800c\u53d6\u5230\u7684\u662f\u53d6\u8fc7\u7684\u6982\u7387\u662f\\(\\frac{k}{n}\\)<br \/>\n\u6211\u4eec\u5f88\u5bb9\u6613\u53ef\u4ee5\u77e5\u9053\uff0c\u5df2\u7ecf\u53d6\u4e86\\(i\\)\u79cd\u6570\uff0c\u4e0b\u4e00\u6b21\u53d6\u53ef\u80fd\u6709\u4e24\u79cd\u60c5\u51b5\uff1a<br \/>\n\u4e00\uff1a\u53d6\u5230\u7684\u662f\u4e00\u79cd\u65b0\u7684\u6570\u3002<br \/>\n\u4e8c\uff1a\u53d6\u5230\u7684\u662f\u5df2\u7ecf\u53d6\u5230\u8fc7\u7684\u6570\u3002<br \/>\n\u4f46\u65e0\u8bba\u5982\u4f55\u90fd\u8981\u518d\u53d6\u4e00\u6b21\u624d\u6709\u9020\u6210\u72b6\u6001\u6539\u53d8\u7684\u7a7a\u95f4\u3002<br \/>\n\u6545\u800c\u6211\u4eec\u5f97\u5230\u65b9\u7a0b\uff1a<br \/>\n$$ f_{i}=\\frac{n-i}{n}*f_{i+1}+\\frac{i}{n}*f_{i}+1 $$<br \/>\n\u5373\uff1a<br \/>\n$$ n*f_{i}=(n-i)*f_{i+1}+i*f_{i}+n $$<br \/>\n\u4ece\u800c\u5f97\u5230\uff1a<br \/>\n$$ f_{i}=\\frac{(n-i)*f_{i+1}+n}{n-i} $$<br \/>\n\u7b49\u4ef7\u4e8e\uff1a<br \/>\n$$ f_{i}=f_{i+1}+\\frac{n}{n-i} $$<br \/>\n\u4e8e\u662f\u6211\u4eec\u5f97\u5230\u4e86\u9006\u5411\u7684\u9012\u63a8\u65b9\u7a0b\u3002<br \/>\n\u7136\u540e\u662f\u8fb9\u754c\u6761\u4ef6\u3002\u5f88\u663e\u7136\uff0c\\(f_{n}=0\\)\uff0c\u8fd9\u662f\u56e0\u4e3a\uff0c\u5df2\u7ecf\u53d6\u5230\\(n\\)\u79cd\u4ee5\u540e\uff0c\u5c31\u610f\u5473\u7740\u5df2\u7ecf\u53d6\u5b8c\u4e86\u3002<\/p>\n<pre class=\"pure-highlightjs\"><code class=\"cpp\">#include&lt;iostream&gt;\r\n#include&lt;cstdio&gt;\r\nusing namespace std;\r\ndouble f[1005];\r\nint n;\r\nvoid init(){\r\n    scanf(\"%d\",&amp;n);\r\n    f[n]=0;\r\n    for(int i=n-1;i&gt;=0;--i){\r\n        f[i]=f[i+1]+(double)n\/(n-i);\r\n    }\r\n    printf(\"%.2lf\\n\",f[0]);\r\n}\r\nint main(){\r\n    int T;\r\n    scanf(\"%d\",&amp;T);\r\n    while(T--){\r\n        init();\r\n    }\r\n    return 0;\r\n}<\/code><\/pre>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u5f00\u59cb\u5b66\u4e60\u671f\u671bDP\u3002 \u8fd9\u662f\u4e00\u9053\u671f\u671bDP\u5165\u95e8\u9898\u3002 \u9996\u5148\u6211\u4eec\u8bbe\\(f[i]\\)\u8868\u793a\uff0c\u5df2\u7ecf\u53d6\u4e86\\(i\\)\u79cd\u6570\uff0c\u8ddd\u79bb\u53d6\u5b8c &hellip; <\/p>\n<p class=\"link-more\"><a href=\"http:\/\/SmokeyDays.top\/wordpress\/2018\/10\/30\/sp1026-favorite-dice\/\" class=\"more-link\">\u7ee7\u7eed\u9605\u8bfb<span class=\"screen-reader-text\">\u201csp1026 Favorite Dice\u201d<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[28,24,29,6,5],"tags":[],"_links":{"self":[{"href":"http:\/\/SmokeyDays.top\/wordpress\/wp-json\/wp\/v2\/posts\/275"}],"collection":[{"href":"http:\/\/SmokeyDays.top\/wordpress\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/SmokeyDays.top\/wordpress\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/SmokeyDays.top\/wordpress\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/SmokeyDays.top\/wordpress\/wp-json\/wp\/v2\/comments?post=275"}],"version-history":[{"count":1,"href":"http:\/\/SmokeyDays.top\/wordpress\/wp-json\/wp\/v2\/posts\/275\/revisions"}],"predecessor-version":[{"id":276,"href":"http:\/\/SmokeyDays.top\/wordpress\/wp-json\/wp\/v2\/posts\/275\/revisions\/276"}],"wp:attachment":[{"href":"http:\/\/SmokeyDays.top\/wordpress\/wp-json\/wp\/v2\/media?parent=275"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/SmokeyDays.top\/wordpress\/wp-json\/wp\/v2\/categories?post=275"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/SmokeyDays.top\/wordpress\/wp-json\/wp\/v2\/tags?post=275"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}