{"id":88,"date":"2024-04-26T00:44:28","date_gmt":"2024-04-25T16:44:28","guid":{"rendered":"https:\/\/seanxd.com\/?p=88"},"modified":"2024-06-18T17:35:58","modified_gmt":"2024-06-18T09:35:58","slug":"zerojudge-d190","status":"publish","type":"post","link":"https:\/\/seanxd.com\/en\/zerojudge-d190\/","title":{"rendered":"ZeroJudge D190: Age Sort"},"content":{"rendered":"\n\n\n<h4 class=\"wp-block-heading\">\u540c\u984c\uff1aUVa 11462\uff0dAge Sort<\/h4>\n\n\n\n<p>\u7d66\u4f60\u67d0\u570b\u5bb6\u6240\u6709\u4e00\u6b72\u4ee5\u4e0a (\u542b) \u7684\u4eba\u6c11\u7684\u5e74\u9f61\u3002\u4f60\u77e5\u9053\u8a72\u570b\u6c92\u6709\u4eba\u6d3b\u5230 100 \u6b72\u6216\u66f4\u8001\u3002\u73fe\u5728\u7d66\u4f60\u4e00\u500b\u5f88\u7c21\u55ae\u7684\u5de5\u4f5c\uff0c\u5c31\u662f\u628a\u6240\u6709\u7684\u5e74\u9f61\u7531\u5c0f\u5230\u5927\u6392\u5e8f\u3002<\/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>EOF \u8f38\u5165\uff0c\u6bcf\u7d44\u6e2c\u8cc7\u4ee5\u6574\u6578 <strong>N<\/strong> (0 &lt; <strong>N<\/strong> &lt;= 2000000) \u958b\u59cb\uff0c\u4ee3\u8868\u4eba\u6578\u3002\u4e0b\u4e00\u884c\u5247\u6709 <strong>N<\/strong> \u500b\u6574\u6578\uff0c\u4ee3\u8868\u4ed6\u5011\u7684\u5e74\u9f61\u3002<strong>N<\/strong> = 0 \u4ee3\u8868\u8f38\u5165\u7684\u7d50\u675f\uff0c\u8acb\u52ff\u8655\u7406\u9019\u7d44\u6e2c\u8cc7\u3002<\/td><td>\u5c0d\u65bc\u6bcf\u7d44\u6e2c\u8cc7\uff0c\u5370\u51fa\u4e00\u884c\u4ee5\u7a7a\u767d\u9694\u958b\u7684 <strong>N<\/strong> \u500b\u6574\u6578\u3002\u9019\u4e9b\u6574\u6578\u70ba\u4eba\u6c11\u7684\u5e74\u9f61\uff0c\u7531\u5c0f\u5230\u5927\u6392\u5217\u3002<\/td><\/tr><tr><td><strong>5<\/strong><br>3  4  2  1  5<br><strong>5<\/strong><br>2  3  2  3  1<br><strong>0<\/strong><\/td><td>1  2  3  4  5<br>1  2  2  3  3<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">\u89e3\u984c\u601d\u8def<\/h2>\n\n\n\n<p>\u5c07\u9700\u8981\u6392\u5217\u7684\u6574\u6578\u6536\u5230\u4e00\u500b<strong>\u9663\u5217<\/strong>\u88e1\uff0c\u518d\u4f7f\u7528<strong>Sort<\/strong>\u4f86\u9032\u884c\u6392\u5e8f\uff0c\u6700\u5f8c\u4f7f\u7528<strong>For\u8ff4\u5708<\/strong>\u5f9e\u7b2c0\u500b\u8cc7\u6599\u5230\u7b2cN-1\u500b\u8cc7\u6599\u4f9d\u5e8f\u8f38\u51fa\u3002<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">\u7bc4\u4f8b\u7a0b\u5f0f\u78bc\uff0d<a href=\"https:\/\/zerojudge.tw\/ShowProblem?problemid=d190\" target=\"_blank\" rel=\"noreferrer noopener\">ZeroJudge D190: Age Sort<\/a><\/h3>\n\n\n\n<div class=\"hcb_wrap nfd-wb-animate nfd-wb-reveal-right\"><pre class=\"prism line-numbers lang-cpp\" data-lang=\"C++\"><code>#include &lt;iostream&gt;\n#include &lt;vector&gt;\n#include &lt;algorithm&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 != 0)\n    {\n        vector&lt;int&gt;num;\n        for (int i = 0; i&lt;N; i++)\n        {\n            int tmp;\n            cin &gt;&gt; tmp;\n            num.push_back(tmp);\n        }\n        sort(num.begin(), num.end());\n        for (int i = 0; i&lt;N; i++)\n        {\n            cout &lt;&lt; num[i] &lt;&lt; &quot; &quot;;\n        }\n        cout &lt;&lt; &quot;\\n&quot;;\n    }\n}\n\n\/\/ZeroJudge D190\n\/\/Dr. SeanXD<\/code><\/pre><\/div>\n","protected":false},"excerpt":{"rendered":"<p>\u540c\u984c\uff1aUVa 11462\uff0dAge Sort \u7d66\u4f60\u67d0\u570b\u5bb6\u6240\u6709\u4e00\u6b72\u4ee5\u4e0a (\u542b) \u7684\u4eba\u6c11\u7684\u5e74\u9f61\u3002\u4f60\u77e5\u9053\u8a72\u570b\u6c92\u6709\u4eba\u6d3b\u5230 [&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":[18],"tags":[20,19,9],"class_list":["post-88","post","type-post","status-publish","format-standard","hentry","category-uva","tag-20","tag-19","tag-9"],"blocksy_meta":[],"_links":{"self":[{"href":"https:\/\/seanxd.com\/en\/wp-json\/wp\/v2\/posts\/88","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/seanxd.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/seanxd.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/seanxd.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/seanxd.com\/en\/wp-json\/wp\/v2\/comments?post=88"}],"version-history":[{"count":4,"href":"https:\/\/seanxd.com\/en\/wp-json\/wp\/v2\/posts\/88\/revisions"}],"predecessor-version":[{"id":957,"href":"https:\/\/seanxd.com\/en\/wp-json\/wp\/v2\/posts\/88\/revisions\/957"}],"wp:attachment":[{"href":"https:\/\/seanxd.com\/en\/wp-json\/wp\/v2\/media?parent=88"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/seanxd.com\/en\/wp-json\/wp\/v2\/categories?post=88"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/seanxd.com\/en\/wp-json\/wp\/v2\/tags?post=88"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}