{"id":195832,"date":"2013-09-30T16:54:03","date_gmt":"2013-09-30T12:54:03","guid":{"rendered":"http:\/\/savepearlharbor.com\/?p=195832"},"modified":"-0001-11-30T00:00:00","modified_gmt":"-0001-11-29T21:00:00","slug":"","status":"publish","type":"post","link":"https:\/\/savepearlharbor.com\/?p=195832","title":{"rendered":"<span class=\"post_title\">\u0414\u0432\u043e\u0438\u0447\u043d\u0430\u044f \u043a\u0443\u0447\u0430: \u0434\u043e\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e \u0441\u043b\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u043f\u043e\u0441\u0442\u0440\u043e\u0435\u043d\u0438\u044f \u041e(n)<\/span>"},"content":{"rendered":"<div class=\"content html_format\"> \t\t\t\u0421\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u043e \u0440\u0435\u0447\u044c \u043f\u043e\u0439\u0434\u0435\u0442 \u043e <a href=\"http:\/\/ru.wikipedia.org\/wiki\/%D0%94%D0%B2%D0%BE%D0%B8%D1%87%D0%BD%D0%B0%D1%8F_%D0%BA%D1%83%D1%87%D0%B0\">\u0434\u0432\u043e\u0438\u0447\u043d\u043e\u0439 \u043a\u0443\u0447\u0435<\/a> \u0438 \u0435\u0435 \u043f\u043e\u0441\u0442\u0440\u043e\u0435\u043d\u0438\u0438 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e Sift-Down(\u0438\u043b\u0438 Heapify). \u041c\u043d\u043e\u0433\u0438\u043c \u043d\u0430\u0432\u0435\u0440\u043d\u043e\u0435 \u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e, \u0447\u0442\u043e \u043f\u043e\u0441\u0442\u0440\u043e\u0435\u043d\u0438\u0435 \u043a\u0443\u0447\u0438 \u0442\u0430\u043a\u0438\u043c \u043e\u0431\u0440\u0430\u0437\u043e\u043c \u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0437\u0430 <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/f36\/b14\/d1c\/f36b14d1cbf97894d40b1acc30e0c15f.png\" alt=\"image\"\/>. \u0417\u0434\u0435\u0441\u044c \u044f \u043f\u0440\u0438\u0432\u0435\u0434\u0443 \u0434\u043e\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e \u044d\u0442\u043e\u0433\u043e \u0444\u0430\u043a\u0442\u0430.<br \/>  <a name=\"habracut\"><\/a><br \/>  \u0412\u043e\u0442 \u043f\u0440\u0438\u043c\u0435\u0440 \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u044b \u043f\u043e\u0441\u0442\u0440\u043e\u0435\u043d\u0438\u044f \u043a\u0443\u0447\u0438 \u043f\u043e \u043c\u0430\u0441\u0441\u0438\u0432\u0443 \u043d\u0430 \u044f\u0437\u044b\u043a\u0435 Pascal.<\/p>\n<pre><code class=\"delphi\">procedure siftdown(v:longint); var   min,l,r:longint; begin   l:=v*2; r:=v*2+1;   min:=v;   if (l &lt;= s) and (a[l] &lt; a[min]) then min:=l;   if (r &lt;= s) and (a[r] &lt; a[min]) then min:=r;   if min &lt;&gt; v then begin     swap(a[min], a[v]);     sift_down(min);   end; end;  procedure build; var   i:longint; begin   for i:=n downto 1 do siftdown(i); end; <\/code><\/pre>\n<p>  \u0418\u0442\u0430\u043a, \u043f\u0443\u0441\u0442\u044c \u0434\u0430\u043d \u043c\u0430\u0441\u0441\u0438\u0432, \u0441\u043e\u0441\u0442\u043e\u044f\u0449\u0438\u0439 \u0438\u0437 <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/705\/651\/e7e\/705651e7e1befc5ed4251c87e93bc7f9.png\" alt=\"image\"\/> \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432, \u0438 <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/cb7\/2f5\/1b5\/cb72f51b5da84fec81a537ba32cabd02.png\" alt=\"image\"\/> \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0432\u044b\u0437\u043e\u0432\u043e\u0432 \u043e\u043f\u0435\u0440\u0430\u0442\u043e\u0440\u0430 <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/5d6\/158\/c92\/5d6158c9252f90583ae149c01016a094.png\" alt=\"image\"\/>(\u0432 \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u0435 <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/66d\/461\/0ca\/66d4610cad24d24cd67daaba4fa7587a.png\" alt=\"image\"\/>) \u043f\u0440\u0438 \u043f\u043e\u0441\u0442\u0440\u043e\u0435\u043d\u0438\u0438 \u043a\u0443\u0447\u0438 \u043f\u043e \u044d\u0442\u043e\u043c\u0443 \u043c\u0430\u0441\u0441\u0438\u0432\u0443. \u041e\u0447\u0435\u0432\u0438\u0434\u043d\u043e, <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/cb7\/2f5\/1b5\/cb72f51b5da84fec81a537ba32cabd02.png\" alt=\"image\"\/> \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u0442 \u0432\u0440\u0435\u043c\u044f \u0440\u0430\u0431\u043e\u0442\u044b \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u044b <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/83e\/447\/69e\/83e44769e973378c5b0089d21f7b0530.png\" alt=\"image\"\/>, \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u043d\u0430\u043c \u0438 \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u043d\u043e.<\/p>\n<h6>\u041b\u0435\u043c\u043c\u0430. <\/h6>\n<p>\u041f\u0443\u0441\u0442\u044c \u0434\u043b\u044f \u043a\u0430\u043a\u043e\u0433\u043e-\u0442\u043e \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430 \u043c\u0430\u0441\u0441\u0438\u0432\u0430 \u043f\u0440\u0438 \u0432\u044b\u0437\u043e\u0432\u0435 <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/66d\/461\/0ca\/66d4610cad24d24cd67daaba4fa7587a.png\" alt=\"image\"\/> \u0431\u044b\u043b\u043e \u0441\u0434\u0435\u043b\u0430\u043d\u043e <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/8df\/378\/040\/8df37804042784ad431a5dfa4d805814.png\" alt=\"image\"\/> \u0432\u044b\u0437\u043e\u0432\u043e\u0432 \u043e\u043f\u0435\u0440\u0430\u0442\u043e\u0440\u0430 <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/5d6\/158\/c92\/5d6158c9252f90583ae149c01016a094.png\" alt=\"image\"\/>. \u0422\u043e\u0433\u0434\u0430 \u0435\u0433\u043e \u0438\u043d\u0434\u0435\u043a\u0441 \u043d\u0435 \u043f\u0440\u0435\u0432\u043e\u0441\u0445\u043e\u0434\u0438\u043b <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/169\/0fe\/247\/1690fe247ecf01a471610ff84917486f.png\" alt=\"image\"\/>. <\/p>\n<h6>\u0414\u043e\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e: <\/h6>\n<p>  \u041f\u0440\u0438 <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/8df\/378\/040\/8df37804042784ad431a5dfa4d805814.png\" alt=\"image\"\/> \u0432\u044b\u0437\u043e\u0432\u0430\u0445 \u043e\u043f\u0435\u0440\u0430\u0442\u043e\u0440\u0430 <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/5d6\/158\/c92\/5d6158c9252f90583ae149c01016a094.png\" alt=\"image\"\/> \u0438\u043d\u0434\u0435\u043a\u0441 <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/3e7\/ce1\/6f7\/3e7ce16f7a90dba417822566df08daf4.png\" alt=\"image\"\/> \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u0430\u0435\u0442 \u043a\u0430\u043a \u043c\u0438\u043d\u0438\u043c\u0443\u043c \u0432 <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/4a2\/801\/c4c\/4a2801c4ca1e95d78639c0468621cd78.png\" alt=\"image\"\/> \u0440\u0430\u0437. \u041f\u0443\u0441\u0442\u044c \u0442\u0435\u043f\u0435\u0440\u044c <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/d3c\/670\/f36\/d3c670f36e10208a09c5a6a556a80257.png\" alt=\"image\"\/>, \u0442.\u0435. <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/4ef\/903\/0a7\/4ef9030a7a6e0748c6af79a84711e455.png\" alt=\"image\"\/>. \u0422\u043e\u0433\u0434\u0430 \u043f\u043e\u0441\u043b\u0435 <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/8df\/378\/040\/8df37804042784ad431a5dfa4d805814.png\" alt=\"image\"\/> \u0432\u044b\u0437\u043e\u0432\u043e\u0432 \u0438\u043c\u0435\u0435\u043c <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/03f\/0cd\/73a\/03f0cd73a51520b389829acb9ac469b4.png\" alt=\"image\"\/>, \u0447\u0442\u043e \u043d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e, \u0442\u0430\u043a \u043a\u0430\u043a \u0432 \u043d\u0430\u0448\u0435\u0439 \u043a\u0443\u0447\u0435 <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/705\/651\/e7e\/705651e7e1befc5ed4251c87e93bc7f9.png\" alt=\"image\"\/> \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432. <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/d53\/4bd\/7fe\/d534bd7fe40d8a553c72645e5147b481.png\" alt=\"image\"\/><\/p>\n<p>  \u041e\u0446\u0435\u043d\u0438\u043c \u0442\u0435\u043f\u0435\u0440\u044c \u0441\u0432\u0435\u0440\u0445\u0443 \u0432\u0435\u043b\u0438\u0447\u0438\u043d\u0443 <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/cb7\/2f5\/1b5\/cb72f51b5da84fec81a537ba32cabd02.png\" alt=\"image\"\/>. \u041f\u0443\u0441\u0442\u044c \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u043c\u0430\u0441\u0441\u0438\u0432\u0430 \u0438\u043c\u0435\u0435\u0442 \u0438\u043d\u0434\u0435\u043a\u0441 <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/3e7\/ce1\/6f7\/3e7ce16f7a90dba417822566df08daf4.png\" alt=\"image\"\/>. \u041d\u0430\u0439\u0434\u0435\u0442\u0441\u044f <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/8df\/378\/040\/8df37804042784ad431a5dfa4d805814.png\" alt=\"image\"\/>, \u0442\u0430\u043a\u043e\u0435 \u0447\u0442\u043e <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/201\/342\/513\/20134251397d315b236c5a530075e17d.png\" alt=\"image\"\/>. \u0422\u043e\u0433\u0434\u0430 \u0434\u043b\u044f \u0442\u043e\u0433\u043e, \u0447\u0442\u043e\u0431\u044b \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u043c\u0430\u0441\u0441\u0438\u0432\u0430 \u0441 \u0438\u043d\u0434\u0435\u043a\u0441\u043e\u043c <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/3e7\/ce1\/6f7\/3e7ce16f7a90dba417822566df08daf4.png\" alt=\"image\"\/> \u0432\u0441\u0442\u0430\u043b \u043d\u0430 \u0441\u0432\u043e\u0435 \u043c\u0435\u0441\u0442\u043e \u0432 \u043a\u0443\u0447\u0435 \u043f\u043e\u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043d\u0435 \u0431\u043e\u043b\u044c\u0448\u0435 <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/8df\/378\/040\/8df37804042784ad431a5dfa4d805814.png\" alt=\"image\"\/> \u0432\u044b\u0437\u043e\u0432\u043e\u0432 <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/5d6\/158\/c92\/5d6158c9252f90583ae149c01016a094.png\" alt=\"image\"\/>(\u043f\u043e \u043b\u0435\u043c\u043c\u0435). \u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432 \u0441 \u0442\u0430\u043a\u0438\u043c\u0438 \u0438\u043d\u0434\u0435\u043a\u0441\u0430\u043c\u0438 \u0435\u0441\u0442\u044c \u0432\u0435\u043b\u0438\u0447\u0438\u043d\u0430 <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/62a\/54f\/88b\/62a54f88be18ac6e2b876c849adc21f7.png\" alt=\"image\"\/>, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u043f\u0440\u0438 <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/dc9\/aac\/d44\/dc9aacd44b50391f97255f01d4128fb9.png\" alt=\"image\"\/> \u043e\u0431\u0440\u0430\u0449\u0430\u0435\u0442\u0441\u044f \u0432 \u043d\u0443\u043b\u044c.<\/p>\n<p>  \u0422\u0430\u043a\u0438\u043c \u043e\u0431\u0440\u0430\u0437\u043e\u043c,<\/p>\n<p>  <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/176\/537\/91f\/17653791f6f262c577bdd545a5bd0727.png\" alt=\"image\"\/><br \/>  \u041f\u0440\u0438 <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/ada\/4f5\/ea4\/ada4f5ea4998b656f80aac79ab79ac94.png\" alt=\"image\"\/> \u0441\u043b\u0430\u0433\u0430\u0435\u043c\u044b\u0435 \u043d\u0443\u043b\u0435\u0432\u044b\u0435(\u043f\u043e\u044d\u0442\u043e\u043c\u0443 \u0446\u0438\u043a\u043b \u0432 \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u0435 <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/83e\/447\/69e\/83e44769e973378c5b0089d21f7b0530.png\" alt=\"image\"\/> \u043c\u043e\u0436\u043d\u043e \u043d\u0430\u0447\u0438\u043d\u0430\u0442\u044c \u0441 <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/007\/2d2\/843\/0072d28439a711bcb338d9052f2792f2.png\" alt=\"image\"\/>). <br \/>  \u041e\u0446\u0435\u043d\u0438\u043c \u043b\u0435\u0432\u044b\u0439 \u043c\u043d\u043e\u0436\u0438\u0442\u0435\u043b\u044c \u0432 \u043a\u0430\u0436\u0434\u043e\u043c \u0441\u043b\u0430\u0433\u0430\u0435\u043c\u043e\u043c \u0441\u0443\u043c\u043c\u044b, \u043a\u0430\u043a <\/p>\n<p>  <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/a2d\/1c4\/d1e\/a2d1c4d1e985c8ee11b8cdbf21db12fb.png\" alt=\"image\"\/><\/p>\n<p>  \u041e\u0442\u0441\u044e\u0434\u0430 \u0438\u043c\u0435\u0435\u043c:<\/p>\n<p>  <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/da3\/3fa\/ca8\/da33faca80ad29e3426a477a635a31d1.png\" alt=\"image\"\/><\/p>\n<p>  \u041e\u0446\u0435\u043d\u0438\u043c \u043a\u0430\u0436\u0434\u0443\u044e \u0438\u0437 \u0441\u0443\u043c\u043c.<\/p>\n<p>  <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/d1b\/3b5\/ddf\/d1b3b5ddf68c9632bfe4335240c6cee9.png\" alt=\"image\"\/><\/p>\n<p>  <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/56f\/75b\/332\/56f75b332f99e01ce2dc00c3b931772f.png\" alt=\"image\"\/><\/p>\n<p>  \u0422\u0430\u043a\u0438\u043c \u043e\u0431\u0440\u0430\u0437\u043e\u043c, <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/b74\/960\/c3d\/b74960c3dd83ecde82a4843c10c4e0fb.png\" alt=\"image\"\/>.<br \/>  <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/cb7\/2f5\/1b5\/cb72f51b5da84fec81a537ba32cabd02.png\" alt=\"image\"\/> \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0430 \u0441\u0432\u0435\u0440\u0445\u0443 \u0438 \u0441\u043d\u0438\u0437\u0443 \u0444\u0443\u043d\u043a\u0446\u0438\u044f\u043c\u0438, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0435\u0441\u0442\u044c <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/f36\/b14\/d1c\/f36b14d1cbf97894d40b1acc30e0c15f.png\" alt=\"image\"\/>. \u0417\u043d\u0430\u0447\u0438\u0442, <img decoding=\"async\" src=\"http:\/\/mathurl.com\/ky3bj3v.png\" alt=\"image\"\/>.<br \/>  \u0421\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u043e, \u0432\u0440\u0435\u043c\u044f \u0440\u0430\u0431\u043e\u0442\u044b \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u044b <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/83e\/447\/69e\/83e44769e973378c5b0089d21f7b0530.png\" alt=\"image\"\/> \u0435\u0441\u0442\u044c \u0432\u0435\u043b\u0438\u0447\u0438\u043d\u0430 \u043f\u0440\u043e\u043f\u043e\u0440\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u0430\u044f <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/f36\/b14\/d1c\/f36b14d1cbf97894d40b1acc30e0c15f.png\" alt=\"image\"\/>. \t\t\t<\/p>\n<div class=\"clear\"><\/div>\n<\/p><\/div>\n<p> \u0441\u0441\u044b\u043b\u043a\u0430 \u043d\u0430 \u043e\u0440\u0438\u0433\u0438\u043d\u0430\u043b \u0441\u0442\u0430\u0442\u044c\u0438 <a href=\"http:\/\/habrahabr.ru\/post\/195832\/\"> http:\/\/habrahabr.ru\/post\/195832\/<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<div class=\"content html_format\"> \t\t\t\u0421\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u043e \u0440\u0435\u0447\u044c \u043f\u043e\u0439\u0434\u0435\u0442 \u043e <a href=\"http:\/\/ru.wikipedia.org\/wiki\/%D0%94%D0%B2%D0%BE%D0%B8%D1%87%D0%BD%D0%B0%D1%8F_%D0%BA%D1%83%D1%87%D0%B0\">\u0434\u0432\u043e\u0438\u0447\u043d\u043e\u0439 \u043a\u0443\u0447\u0435<\/a> \u0438 \u0435\u0435 \u043f\u043e\u0441\u0442\u0440\u043e\u0435\u043d\u0438\u0438 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e Sift-Down(\u0438\u043b\u0438 Heapify). \u041c\u043d\u043e\u0433\u0438\u043c \u043d\u0430\u0432\u0435\u0440\u043d\u043e\u0435 \u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e, \u0447\u0442\u043e \u043f\u043e\u0441\u0442\u0440\u043e\u0435\u043d\u0438\u0435 \u043a\u0443\u0447\u0438 \u0442\u0430\u043a\u0438\u043c \u043e\u0431\u0440\u0430\u0437\u043e\u043c \u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0437\u0430 <img decoding=\"async\" src=\"http:\/\/habr.habrastorage.org\/post_images\/f36\/b14\/d1c\/f36b14d1cbf97894d40b1acc30e0c15f.png\" alt=\"image\"\/>. \u0417\u0434\u0435\u0441\u044c \u044f \u043f\u0440\u0438\u0432\u0435\u0434\u0443 \u0434\u043e\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e \u044d\u0442\u043e\u0433\u043e \u0444\u0430\u043a\u0442\u0430.  <\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[],"tags":[],"class_list":["post-195832","post","type-post","status-publish","format-standard","hentry"],"_links":{"self":[{"href":"https:\/\/savepearlharbor.com\/index.php?rest_route=\/wp\/v2\/posts\/195832","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/savepearlharbor.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/savepearlharbor.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/savepearlharbor.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/savepearlharbor.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=195832"}],"version-history":[{"count":0,"href":"https:\/\/savepearlharbor.com\/index.php?rest_route=\/wp\/v2\/posts\/195832\/revisions"}],"wp:attachment":[{"href":"https:\/\/savepearlharbor.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=195832"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/savepearlharbor.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=195832"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/savepearlharbor.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=195832"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}