{"id":132,"date":"2024-04-26T13:49:54","date_gmt":"2024-04-26T05:49:54","guid":{"rendered":"https:\/\/seanxd.com\/?p=132"},"modified":"2024-04-26T13:49:56","modified_gmt":"2024-04-26T05:49:56","slug":"zerojudge-a282","status":"publish","type":"post","link":"https:\/\/seanxd.com\/zh\/zerojudge-a282\/","title":{"rendered":"ZeroJudge A282: \u8a8d\u771f\u5ff5\u66f8"},"content":{"rendered":"\n\n\n<p class=\"\">\u6211\u6700\u559c\u6b61\u5ff5\u66f8\u4e86\uff01<\/p>\n\n\n\n<p class=\"\">2000\u9801\u7684\u8ab2\u672c\u8036\uff01<\/p>\n\n\n\n<p class=\"\">\u6211\u4e0b\u4e00\u9801\u61c9\u8a72\u8981\u5ff5\u54ea\u4e00\u9801\u5462QQ<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\u7bc4\u4f8b\u6e2c\u8cc7<\/h2>\n\n\n\n<figure class=\"wp-block-table nfd-wb-animate nfd-wb-fade-in-bottom-short\"><table class=\"has-fixed-layout\"><thead><tr><th>\u7bc4\u4f8b\u8f38\u5165<\/th><th>\u7bc4\u4f8b\u8f38\u51fa<\/th><\/tr><\/thead><tbody><tr><td><strong>EOF<\/strong> \u8f38\u5165\uff0c\u6bcf\u7d44\u8f38\u5165\u4e00\u958b\u59cb\u6709\u4e00\u500b\u6578\u5b57 <strong>N<\/strong> (0 &lt;= <strong>N<\/strong> &lt;= 1000) \u4ee3\u8868\u4f60\u4ee5\u524d\u770b\u904e\u5e7e\u9801 (\u53ef\u80fd\u91cd\u8907)\u3002<br>\u63a5\u4e0b\u4f86 <strong>N<\/strong> \u500b 1\uff5e2000 \u7684\u6b63\u6574\u6578\u4ee3\u8868\u4f60\u770b\u904e\u54ea\u5e7e\u9801\u3002<\/td><td>\u4e00\u500b\u6578\u5b57\uff0c\u4ee3\u8868\u4f60\u4e0b\u4e00\u9801\u61c9\u8a72\u770b\u54ea\u4e00\u9801<br>\u4e5f\u5c31\u662f\u9019\u672c\u66f8\u88e1\u9762\u7b2c\u4e00\u9801\u4f60\u6c92\u770b\u904e\u7684\u3002<\/td><\/tr><tr><td><strong>5<\/strong><br>1  3  4  5  6<br><strong>4<\/strong><br>1  2  3  4<br><strong>5<\/strong><br>2  3  4  5  6<\/td><td>2<br>5<br>1<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">\u89e3\u984c\u601d\u8def<\/h2>\n\n\n\n<p class=\"\">\u56e0\u70ba\u984c\u76ee\u6709\u8b1b <strong>N \u4e0d\u6703\u8d85\u904e 1000<\/strong> \u4e14\u9801\u6578<strong>\u6700\u591a\u70ba 2000 \u9801<\/strong>\uff0c\u6240\u4ee5\u4f7f\u7528 <strong>For<\/strong> \u8ff4\u5708\u5f9e <strong>1 \u8dd1\u5230 2000<\/strong> \u770b\u6709\u54ea\u4e9b\u9801\u6578\u9084\u6c92\u8b80\u5230\u5c31\u76f4\u63a5\u8f38\u51fa\u76ee\u524d\u8dd1\u5230\u7684\u9801\u6578\u7136\u5f8c <strong>break<\/strong> \u8ff4\u5708\u3002\u53ef\u4ee5\u4f7f\u7528 <strong>Map<\/strong> \u4f86\u5b58\u53d6\u76ee\u524d\u5df2\u7d93\u8b80\u4e86\u54ea\u4e9b\u9801\u6578\uff0c\u4e26\u4f7f\u7528 <strong>For<\/strong> \u8ff4\u5708\u4f86\u5224\u65b7\u54ea\u4e9b\u9801\u6578\u6c92\u6709\u88ab\u8b80\u5230\u4f86\u6c42\u7b54\u6848\u3002<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">\u7bc4\u4f8b\u7a0b\u5f0f\u78bc\uff0d<a href=\"https:\/\/zerojudge.tw\/ShowProblem?problemid=a282\" target=\"_blank\" rel=\"noreferrer noopener\">ZeroJudge A282: \u8a8d\u771f\u5ff5\u66f8<\/a><\/h3>\n\n\n\n<div class=\"hcb_wrap nfd-wb-animate nfd-wb-reveal-right nfd-delay-150\"><pre class=\"prism line-numbers lang-cpp\" data-lang=\"C++\"><code>#include &lt;iostream&gt;\n#include &lt;map&gt;\nusing namespace std;\n\nint main() {\n    cin.sync_with_stdio(0);\n    cin.tie(nullptr);\n    int N;\n    while (cin &gt;&gt; N)\n    {\n        map&lt;int, int&gt;MAP;\n        for (int i = 0; i&lt;N; i++)\n        {\n            int tmp;\n            cin &gt;&gt; tmp;\n            MAP[tmp] = 1;\n        }\n        for (int i = 1; i&lt;=2000; i++)\n        {\n            if (MAP[i] == 0)\n            {\n                cout &lt;&lt; i &lt;&lt; endl;\n                break;\n            }\n        }\n    }\n}\n\n\/\/ZeroJudge A282\n\/\/Dr. SeanXD<\/code><\/pre><\/div>\n","protected":false},"excerpt":{"rendered":"<p>\u6211\u6700\u559c\u6b61\u5ff5\u66f8\u4e86\uff01 2000\u9801\u7684\u8ab2\u672c\u8036\uff01 \u6211\u4e0b\u4e00\u9801\u61c9\u8a72\u8981\u5ff5\u54ea\u4e00\u9801\u5462QQ \u7bc4\u4f8b\u6e2c\u8cc7 \u7bc4\u4f8b\u8f38\u5165 \u7bc4\u4f8b\u8f38\u51fa EOF \u8f38 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"nf_dc_page":"","footnotes":""},"categories":[29],"tags":[14,8,9],"class_list":["post-132","post","type-post","status-publish","format-standard","hentry","category-zerojudge-","tag-map","tag-8","tag-9"],"blocksy_meta":[],"_links":{"self":[{"href":"https:\/\/seanxd.com\/zh\/wp-json\/wp\/v2\/posts\/132","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/seanxd.com\/zh\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/seanxd.com\/zh\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/seanxd.com\/zh\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/seanxd.com\/zh\/wp-json\/wp\/v2\/comments?post=132"}],"version-history":[{"count":1,"href":"https:\/\/seanxd.com\/zh\/wp-json\/wp\/v2\/posts\/132\/revisions"}],"predecessor-version":[{"id":133,"href":"https:\/\/seanxd.com\/zh\/wp-json\/wp\/v2\/posts\/132\/revisions\/133"}],"wp:attachment":[{"href":"https:\/\/seanxd.com\/zh\/wp-json\/wp\/v2\/media?parent=132"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/seanxd.com\/zh\/wp-json\/wp\/v2\/categories?post=132"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/seanxd.com\/zh\/wp-json\/wp\/v2\/tags?post=132"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}