{"id":34094,"date":"2024-11-01T09:24:03","date_gmt":"2024-11-01T09:24:03","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=34094"},"modified":"2024-11-01T10:53:26","modified_gmt":"2024-11-01T10:53:26","slug":"c-coding-test-course-implementing-absolute-value-heap","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/34094\/","title":{"rendered":"C# Coding Test Course, Implementing Absolute Value Heap"},"content":{"rendered":"<p><body><\/p>\n<p>Hello, everyone! Today we will solve the problem of implementing a <strong>Absolute Value Heap<\/strong>. We will tackle an algorithm problem and utilize C# features in the process. The &#8216;Absolute Value Heap&#8217; mentioned earlier is a special heap that is sorted based on the absolute values using a heap structure. This topic often appears in algorithm problems.<\/p>\n<h2>Problem Description<\/h2>\n<p>The Absolute Value Heap supports the following functionalities:<\/p>\n<ul>\n<li>Remove and print the number with the smallest absolute value.<\/li>\n<li>If the absolute values are the same, remove and print the number with the smaller actual value first.<\/li>\n<li>Add a new integer.<\/li>\n<\/ul>\n<p>For example, we can perform the following operations:<\/p>\n<pre>\n1. Insert: 3\n2. Insert: -1\n3. Insert: -2\n4. Remove\n<\/pre>\n<p>As a result of the above operations, the value that will be removed is -1. Therefore, the problem we need to solve is as follows:<\/p>\n<blockquote>\n<h3>Problem<\/h3>\n<p>Implement the functionalities of the Absolute Value Heap. Given N operations, provide the appropriate outputs for each operation.<\/p>\n<p>The input comprises several integers, each representing one of the following three operations:<\/p>\n<ul>\n<li><code>0<\/code>: Remove and print the number with the smallest absolute value from the Absolute Value Heap.<\/li>\n<li><code>X<\/code>: Insert the integer <code>X<\/code> into the Absolute Value Heap.<\/li>\n<\/ul>\n<\/blockquote>\n<h2>Input and Output<\/h2>\n<h3>Input<\/h3>\n<p>The first line contains the number of operations <code>N<\/code>. (1 \u2264 N \u2264 100,000)<\/p>\n<p>Subsequent lines will contain the operations, where each operation is <code>X<\/code> (-1,000,000 \u2264 <code>X<\/code> \u2264 1,000,000) or <code>0<\/code>.<\/p>\n<h3>Output<\/h3>\n<p>Print each removed number on a new line. If there are no numbers to remove, print <code>0<\/code>.<\/p>\n<h2>Solution<\/h2>\n<p>Now, let&#8217;s write the C# code to solve the problem. In this problem, we can implement the Absolute Value Heap using a <strong>Priority Queue<\/strong>.<\/p>\n<h3>Priority Queue (Heap) Explanation<\/h3>\n<p>A priority queue has each element associated with a priority, and in this case, a heap structure is used. In C#, it can be easily implemented using <code>SortedSet<\/code> or <code>PriorityQueue<\/code>.<\/p>\n<h3>C# Code Implementation<\/h3>\n<p>Below is the C# code that implements the Absolute Value Heap:<\/p>\n<pre><code>\nusing System;\nusing System.Collections.Generic;\nusing System.Linq;\n\nclass AbsoluteHeap\n{\n    static void Main()\n    {\n        int n = int.Parse(Console.ReadLine());\n        var pq = new SortedSet&lt;(int absolute, int value)&gt;();\n\n        for (int i = 0; i &lt; n; i++)\n        {\n            int x = int.Parse(Console.ReadLine());\n            if (x == 0)\n            {\n                if (pq.Count == 0)\n                {\n                    Console.WriteLine(0);\n                }\n                else\n                {\n                    var min = pq.First();\n                    pq.Remove(min);\n                    Console.WriteLine(min.value);\n                }\n            }\n            else\n            {\n                pq.Add((Math.Abs(x), x));\n            }\n        }\n    }\n}\n<\/code><\/pre>\n<h2>Code Explanation<\/h2>\n<p>The above code demonstrates a simple way to implement an Absolute Value Heap. The main steps are as follows:<\/p>\n<ol>\n<li><strong>Receive Input:<\/strong> Read the number of operations N from the first line, then process N operations from the following lines.<\/li>\n<li><strong>Initialize Priority Queue:<\/strong> Use <code>SortedSet<\/code> to store tuples in the form (absolute value, actual value). Here, it is sorted based on the absolute value, and in case of ties, it is sorted by the actual value.<\/li>\n<li><strong>Process Operations:<\/strong> For each operation, if x is 0 (remove operation), remove and print the minimum value from the <code>SortedSet<\/code>. If no value exists, print 0. If x is not 0, add the absolute value and actual value as a tuple.<\/li>\n<\/ol>\n<h3>Efficiency<\/h3>\n<p>This algorithm stores and removes input values based on absolute values with a logarithmic complexity. Therefore, the complexity is O(N log N). In most cases, this level of time complexity will meet the input constraints.<\/p>\n<h2>Conclusion<\/h2>\n<p>In this post, we learned how to implement an Absolute Value Heap. We can efficiently solve algorithm problems by utilizing the SortedSet feature of C#. When tackling algorithm problems, it is important to carefully read the problem requirements and choose the appropriate data structure. We will return next time with another interesting algorithm problem!<\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Hello, everyone! Today we will solve the problem of implementing a Absolute Value Heap. We will tackle an algorithm problem and utilize C# features in the process. The &#8216;Absolute Value Heap&#8217; mentioned earlier is a special heap that is sorted based on the absolute values using a heap structure. This topic often appears in algorithm &hellip; <a href=\"https:\/\/atmokpo.com\/w\/34094\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;C# Coding Test Course, Implementing Absolute Value Heap&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[90],"tags":[],"class_list":["post-34094","post","type-post","status-publish","format-standard","hentry","category-c-coding-test-tutorials"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>C# Coding Test Course, Implementing Absolute Value Heap - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8<\/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:\/\/atmokpo.com\/w\/34094\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"C# Coding Test Course, Implementing Absolute Value Heap - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Hello, everyone! Today we will solve the problem of implementing a Absolute Value Heap. We will tackle an algorithm problem and utilize C# features in the process. The &#8216;Absolute Value Heap&#8217; mentioned earlier is a special heap that is sorted based on the absolute values using a heap structure. This topic often appears in algorithm &hellip; \ub354 \ubcf4\uae30 &quot;C# Coding Test Course, Implementing Absolute Value Heap&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/34094\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:24:03+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T10:53:26+00:00\" \/>\n<meta name=\"author\" content=\"root\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:site\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"root\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"3\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/34094\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/34094\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"C# Coding Test Course, Implementing Absolute Value Heap\",\"datePublished\":\"2024-11-01T09:24:03+00:00\",\"dateModified\":\"2024-11-01T10:53:26+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/34094\/\"},\"wordCount\":513,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"C# Coding Test Tutorials\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/34094\/\",\"url\":\"https:\/\/atmokpo.com\/w\/34094\/\",\"name\":\"C# Coding Test Course, Implementing Absolute Value Heap - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:24:03+00:00\",\"dateModified\":\"2024-11-01T10:53:26+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/34094\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/34094\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/34094\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"C# Coding Test Course, Implementing Absolute Value Heap\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/atmokpo.com\/w\/#website\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/atmokpo.com\/w\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"contentUrl\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"width\":400,\"height\":400,\"caption\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\"},\"image\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/bebubo4\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\",\"name\":\"root\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"caption\":\"root\"},\"sameAs\":[\"http:\/\/atmokpo.com\/w\"],\"url\":\"https:\/\/atmokpo.com\/w\/author\/root\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"C# Coding Test Course, Implementing Absolute Value Heap - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","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:\/\/atmokpo.com\/w\/34094\/","og_locale":"ko_KR","og_type":"article","og_title":"C# Coding Test Course, Implementing Absolute Value Heap - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Hello, everyone! Today we will solve the problem of implementing a Absolute Value Heap. We will tackle an algorithm problem and utilize C# features in the process. The &#8216;Absolute Value Heap&#8217; mentioned earlier is a special heap that is sorted based on the absolute values using a heap structure. This topic often appears in algorithm &hellip; \ub354 \ubcf4\uae30 \"C# Coding Test Course, Implementing Absolute Value Heap\"","og_url":"https:\/\/atmokpo.com\/w\/34094\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:24:03+00:00","article_modified_time":"2024-11-01T10:53:26+00:00","author":"root","twitter_card":"summary_large_image","twitter_creator":"@bebubo4","twitter_site":"@bebubo4","twitter_misc":{"\uae00\uc4f4\uc774":"root","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"3\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/34094\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/34094\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"C# Coding Test Course, Implementing Absolute Value Heap","datePublished":"2024-11-01T09:24:03+00:00","dateModified":"2024-11-01T10:53:26+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/34094\/"},"wordCount":513,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["C# Coding Test Tutorials"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/34094\/","url":"https:\/\/atmokpo.com\/w\/34094\/","name":"C# Coding Test Course, Implementing Absolute Value Heap - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:24:03+00:00","dateModified":"2024-11-01T10:53:26+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/34094\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/34094\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/34094\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"C# Coding Test Course, Implementing Absolute Value Heap"}]},{"@type":"WebSite","@id":"https:\/\/atmokpo.com\/w\/#website","url":"https:\/\/atmokpo.com\/w\/","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","description":"","publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/atmokpo.com\/w\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/atmokpo.com\/w\/#organization","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","url":"https:\/\/atmokpo.com\/w\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/","url":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","contentUrl":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","width":400,"height":400,"caption":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8"},"image":{"@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/bebubo4"]},{"@type":"Person","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7","name":"root","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","caption":"root"},"sameAs":["http:\/\/atmokpo.com\/w"],"url":"https:\/\/atmokpo.com\/w\/author\/root\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/34094","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/comments?post=34094"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/34094\/revisions"}],"predecessor-version":[{"id":34095,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/34094\/revisions\/34095"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=34094"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=34094"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=34094"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}