<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-3697489888089030322</id><updated>2025-05-03T03:46:03.004+03:00</updated><category term="C++"/><category term="Volume 1"/><category term="Java"/><category term="Volume 2"/><category term="Volume 100"/><category term="Volume 3"/><category term="Volume 4"/><category term="Volume 117"/><category term="Volume 5"/><category term="Volume 6"/><category term="Volume 9"/><title type='text'>programming contest problems and solutions</title><subtitle type='html'>Acm uva online judge problems and solution using C++ and Java</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://acm-solution.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default?redirect=false'/><link rel='alternate' type='text/html' href='http://acm-solution.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default?start-index=26&amp;max-results=25&amp;redirect=false'/><author><name>Nawar</name><uri>http://www.blogger.com/profile/02915122080320414083</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>37</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-3697489888089030322.post-8726123195052832648</id><published>2012-05-23T13:55:00.001+02:00</published><updated>2012-05-23T13:57:41.356+02:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="C++"/><category scheme="http://www.blogger.com/atom/ns#" term="Volume 1"/><title type='text'>ACM - UVA 108 - Maximum Sum</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
Problem: &lt;a href=&quot;http://uva.onlinejudge.org/index.php?option=com_onlinejudge&amp;amp;Itemid=8&amp;amp;category=3&amp;amp;page=show_problem&amp;amp;problem=44&quot;&gt;108 - Maximum Sum&lt;/a&gt;&lt;br /&gt;
Solution: C++&lt;br /&gt;
Hints: &lt;a href=&quot;http://www.algorithmist.com/index.php/UVa_108&quot;&gt;http://www.algorithmist.com/index.php/UVa_108&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.blogger.com/blogger.g?blogID=3697489888089030322&quot; name=&quot;more&quot;&gt;&lt;/a&gt;#include &amp;lt;iostream&amp;gt;&lt;br /&gt;
#include &amp;lt;cstdio&amp;gt;&lt;br /&gt;
#include &amp;lt;algorithm&amp;gt;&lt;br /&gt;
#include &amp;lt;cstring&amp;gt;&lt;br /&gt;
#include &amp;lt;string&amp;gt;&lt;br /&gt;
#include &amp;lt;cctype&amp;gt;&lt;br /&gt;
#include &amp;lt;stack&amp;gt;&lt;br /&gt;
#include &amp;lt;queue&amp;gt;&lt;br /&gt;
#include &amp;lt;list&amp;gt;&lt;br /&gt;
#include &amp;lt;vector&amp;gt;&lt;br /&gt;
#include &amp;lt;map&amp;gt;&lt;br /&gt;
#include &amp;lt;sstream&amp;gt;&lt;br /&gt;
#include &amp;lt;utility&amp;gt;&lt;br /&gt;
#include &amp;lt;set&amp;gt;&lt;br /&gt;
#include &amp;lt;math.h&amp;gt;&lt;br /&gt;
using namespace std;&lt;br /&gt;
&lt;br /&gt;
#define Dif(i,j,k) (Table[i+k][j] - Table[i][j])&lt;br /&gt;
#define MAXN 110&lt;br /&gt;
&lt;br /&gt;
int N, MAX;&lt;br /&gt;
int Table[MAXN][MAXN];&lt;br /&gt;
&lt;br /&gt;
void ReadCase()&lt;br /&gt;
&amp;nbsp;{&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;int i, j;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;for(i = 1; i&amp;lt;=N; i++)&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;for(j &amp;nbsp;= 0; j&amp;lt;N; j++)&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;scanf(&quot;%d&quot;,&amp;amp;Table[i][j]);&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
void Cal()&lt;br /&gt;
{&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;int i, j, k, t;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;for(i = 1; i&amp;lt;=N; i++)&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;{&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;for(j = 0; j&amp;lt;N; j++)&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Table[i][j] = &amp;nbsp;Table[i][j] + Table[i-1][j];&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;MAX = Table[1][0];&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;for(k = 1; k&amp;lt;=N; k++) &lt;br /&gt;
&amp;nbsp; &amp;nbsp;{&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;for(i = 0; i&amp;lt;=N-k; i++)&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;for(t = 0, j = 0; j&amp;lt;N; j++)&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if(t&amp;gt;=0)&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; t+= Dif(i,j,k);&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else &lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; t = Dif(i,j,k);&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(t&amp;gt;MAX) &lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MAX = t;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;br /&gt;
&amp;nbsp; &amp;nbsp;}&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;br /&gt;
&amp;nbsp; &amp;nbsp;printf(&quot;%d\n&quot;,MAX);&amp;nbsp; &lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
void FREE() &lt;br /&gt;
{&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;int i, j;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;for(i = 0; i&amp;lt;=N; i++)&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;for(j = 0; j&amp;lt;=N; j++)&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Table[i][j] = 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
int main() &lt;br /&gt;
{&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; int f = 0;&amp;nbsp; &lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; while(scanf(&quot;%d&quot;,&amp;amp;N) == 1) &lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if(f++)&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;FREE();&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;ReadCase();&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Cal();&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://acm-solution.blogspot.com/feeds/8726123195052832648/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://acm-solution.blogspot.com/2012/05/acm-uva-108-maximum-sum.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/8726123195052832648'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/8726123195052832648'/><link rel='alternate' type='text/html' href='http://acm-solution.blogspot.com/2012/05/acm-uva-108-maximum-sum.html' title='ACM - UVA 108 - Maximum Sum'/><author><name>Nawar</name><uri>http://www.blogger.com/profile/02915122080320414083</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3697489888089030322.post-3737917685473422862</id><published>2012-05-23T13:55:00.000+02:00</published><updated>2012-05-23T13:57:48.206+02:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="C++"/><category scheme="http://www.blogger.com/atom/ns#" term="Volume 1"/><title type='text'>ACM - UVA 116 - Unidirectional TSP</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;br&gt;
Problem: &lt;a href=&quot;http://uva.onlinejudge.org/index.php?option=com_onlinejudge&amp;amp;Itemid=8&amp;amp;category=3&amp;amp;page=show_problem&amp;amp;problem=52&quot;&gt;116 - Unidirectional TSP &lt;/a&gt;&lt;br&gt;
Solution: C++&lt;br&gt;
Hints: &lt;a href=&quot;http://www.algorithmist.com/index.php/UVa_116&quot;&gt;http://www.algorithmist.com/index.php/UVa_116&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;&lt;a href=&quot;http://acm-solution.blogspot.com/2012/05/acm-uva-116-unidirectional-tsp.html#more&quot;&gt;Read more »&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://acm-solution.blogspot.com/feeds/3737917685473422862/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://acm-solution.blogspot.com/2012/05/acm-uva-116-unidirectional-tsp.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/3737917685473422862'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/3737917685473422862'/><link rel='alternate' type='text/html' href='http://acm-solution.blogspot.com/2012/05/acm-uva-116-unidirectional-tsp.html' title='ACM - UVA 116 - Unidirectional TSP'/><author><name>Nawar</name><uri>http://www.blogger.com/profile/02915122080320414083</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3697489888089030322.post-8606271118844701337</id><published>2011-09-26T07:32:00.001+02:00</published><updated>2011-09-26T07:33:32.559+02:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="C++"/><category scheme="http://www.blogger.com/atom/ns#" term="Volume 4"/><title type='text'>ACM - UVA 458 - The Decoder</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;Problem : &lt;a href=&quot;http://uva.onlinejudge.org/index.php?option=com_onlinejudge&amp;amp;Itemid=8&amp;amp;category=6&amp;amp;page=show_problem&amp;amp;problem=399&quot;&gt;458 - The Decoder&lt;/a&gt;&lt;br&gt;
Solution : C++&lt;br&gt;
Hints : &lt;a href=&quot;http://algorithmist.com/index.php/UVa_458&quot;&gt;http://algorithmist.com/index.php/UVa_458&lt;/a&gt;&lt;br&gt;
&lt;/div&gt;&lt;a href=&quot;http://acm-solution.blogspot.com/2011/09/acm-uva-458-decoder.html#more&quot;&gt;Read more »&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://acm-solution.blogspot.com/feeds/8606271118844701337/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://acm-solution.blogspot.com/2011/09/acm-uva-458-decoder.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/8606271118844701337'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/8606271118844701337'/><link rel='alternate' type='text/html' href='http://acm-solution.blogspot.com/2011/09/acm-uva-458-decoder.html' title='ACM - UVA 458 - The Decoder'/><author><name>Nawar</name><uri>http://www.blogger.com/profile/02915122080320414083</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3697489888089030322.post-681438245518630415</id><published>2011-09-26T06:53:00.001+02:00</published><updated>2011-09-26T06:55:49.275+02:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="C++"/><category scheme="http://www.blogger.com/atom/ns#" term="Volume 3"/><title type='text'>ACM - UVA 305 - Joseph</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;Problem : &lt;a href=&quot;http://uva.onlinejudge.org/index.php?option=com_onlinejudge&amp;amp;Itemid=8&amp;amp;category=5&amp;amp;page=show_problem&amp;amp;problem=241&quot;&gt;305 - Joseph&lt;/a&gt;&lt;br&gt;
Solution : C++&lt;br&gt;
Hints : &lt;a href=&quot;http://algorithmist.com/index.php/UVa_305&quot;&gt;http://algorithmist.com/index.php/UVa_305&lt;/a&gt;&lt;br&gt;
&lt;/div&gt;&lt;a href=&quot;http://acm-solution.blogspot.com/2011/09/acm-uva-305-joseph.html#more&quot;&gt;Read more »&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://acm-solution.blogspot.com/feeds/681438245518630415/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://acm-solution.blogspot.com/2011/09/acm-uva-305-joseph.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/681438245518630415'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/681438245518630415'/><link rel='alternate' type='text/html' href='http://acm-solution.blogspot.com/2011/09/acm-uva-305-joseph.html' title='ACM - UVA 305 - Joseph'/><author><name>Nawar</name><uri>http://www.blogger.com/profile/02915122080320414083</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3697489888089030322.post-5031795296255840847</id><published>2011-09-25T07:24:00.001+02:00</published><updated>2011-09-25T07:24:49.824+02:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="C++"/><category scheme="http://www.blogger.com/atom/ns#" term="Volume 1"/><title type='text'>ACM - UVA 113 - Power of Cryptography</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;Problem : &lt;a href=&quot;http://uva.onlinejudge.org/index.php?option=com_onlinejudge&amp;amp;Itemid=8&amp;amp;page=show_problem&amp;amp;category=3&amp;amp;problem=49&amp;amp;mosmsg=Submission+received+with+ID+9296900&quot;&gt;113 - Power of Cryptography&lt;/a&gt;&lt;br&gt;
Solution : C++&lt;br&gt;
Hints : &lt;a href=&quot;http://algorithmist.com/index.php/UVa_113&quot;&gt;http://algorithmist.com/index.php/UVa_113&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;&lt;a href=&quot;http://acm-solution.blogspot.com/2011/09/acm-uva-113-power-of-cryptography.html#more&quot;&gt;Read more »&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://acm-solution.blogspot.com/feeds/5031795296255840847/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://acm-solution.blogspot.com/2011/09/acm-uva-113-power-of-cryptography.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/5031795296255840847'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/5031795296255840847'/><link rel='alternate' type='text/html' href='http://acm-solution.blogspot.com/2011/09/acm-uva-113-power-of-cryptography.html' title='ACM - UVA 113 - Power of Cryptography'/><author><name>Nawar</name><uri>http://www.blogger.com/profile/02915122080320414083</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3697489888089030322.post-4261768144466642021</id><published>2011-09-25T07:11:00.001+02:00</published><updated>2011-09-25T07:13:13.489+02:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="C++"/><category scheme="http://www.blogger.com/atom/ns#" term="Volume 1"/><title type='text'>ACM - UVA 111 - History Grading</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;Problem : &lt;a href=&quot;http://uva.onlinejudge.org/index.php?option=com_onlinejudge&amp;amp;Itemid=8&amp;amp;category=3&amp;amp;page=show_problem&amp;amp;problem=47&quot;&gt;111 - History Grading&lt;/a&gt;&lt;br&gt;
Solution : C++&lt;br&gt;
Hints : &lt;a href=&quot;http://algorithmist.com/index.php/UVa_111&quot;&gt;http://algorithmist.com/index.php/UVa_111&lt;/a&gt;&lt;br&gt;
&lt;/div&gt;&lt;a href=&quot;http://acm-solution.blogspot.com/2011/09/acm-uva-111-history-grading.html#more&quot;&gt;Read more »&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://acm-solution.blogspot.com/feeds/4261768144466642021/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://acm-solution.blogspot.com/2011/09/acm-uva-111-history-grading.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/4261768144466642021'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/4261768144466642021'/><link rel='alternate' type='text/html' href='http://acm-solution.blogspot.com/2011/09/acm-uva-111-history-grading.html' title='ACM - UVA 111 - History Grading'/><author><name>Nawar</name><uri>http://www.blogger.com/profile/02915122080320414083</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3697489888089030322.post-4356563934507781680</id><published>2011-09-25T06:28:00.002+02:00</published><updated>2011-09-25T06:31:35.986+02:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="C++"/><category scheme="http://www.blogger.com/atom/ns#" term="Volume 2"/><title type='text'>ACM - UVA 202 - Repeating Decimals</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;Problem : &lt;a href=&quot;http://uva.onlinejudge.org/index.php?option=com_onlinejudge&amp;amp;Itemid=8&amp;amp;category=4&amp;amp;page=show_problem&amp;amp;problem=138&quot;&gt;202 - Repeating Decimals&lt;/a&gt;&lt;br&gt;
Solution : C++&lt;br&gt;
Hints : &lt;a href=&quot;http://algorithmist.com/index.php/UVa_202&quot;&gt;http://algorithmist.com/index.php/UVa_202&lt;/a&gt;&lt;br&gt;
&lt;/div&gt;&lt;a href=&quot;http://acm-solution.blogspot.com/2011/09/acm-uva-202-repeating-decimals.html#more&quot;&gt;Read more »&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://acm-solution.blogspot.com/feeds/4356563934507781680/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://acm-solution.blogspot.com/2011/09/acm-uva-202-repeating-decimals.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/4356563934507781680'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/4356563934507781680'/><link rel='alternate' type='text/html' href='http://acm-solution.blogspot.com/2011/09/acm-uva-202-repeating-decimals.html' title='ACM - UVA 202 - Repeating Decimals'/><author><name>Nawar</name><uri>http://www.blogger.com/profile/02915122080320414083</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3697489888089030322.post-8308982436896986748</id><published>2011-09-24T10:10:00.002+02:00</published><updated>2011-09-24T10:17:30.267+02:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="C++"/><category scheme="http://www.blogger.com/atom/ns#" term="Volume 1"/><title type='text'>ACM - UVA 167 - The Sultan&#39;s Successors</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;Problem : &lt;a href=&quot;http://uva.onlinejudge.org/index.php?option=com_onlinejudge&amp;amp;Itemid=8&amp;amp;category=3&amp;amp;page=show_problem&amp;amp;problem=103&quot;&gt;167 - The Sultan&amp;#39;s Successors&lt;/a&gt;&lt;br&gt;
Soutioon : C++&lt;br&gt;
Hints : &lt;a href=&quot;http://algorithmist.com/index.php/UVa_167&quot;&gt;http://algorithmist.com/index.php/UVa_167&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;&lt;a href=&quot;http://acm-solution.blogspot.com/2011/09/acm-uva-167-sultans-successors.html#more&quot;&gt;Read more »&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://acm-solution.blogspot.com/feeds/8308982436896986748/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://acm-solution.blogspot.com/2011/09/acm-uva-167-sultans-successors.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/8308982436896986748'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/8308982436896986748'/><link rel='alternate' type='text/html' href='http://acm-solution.blogspot.com/2011/09/acm-uva-167-sultans-successors.html' title='ACM - UVA 167 - The Sultan&#39;s Successors'/><author><name>Nawar</name><uri>http://www.blogger.com/profile/02915122080320414083</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3697489888089030322.post-2474854368420085852</id><published>2011-09-23T09:41:00.002+02:00</published><updated>2011-09-23T20:35:28.702+02:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="C++"/><category scheme="http://www.blogger.com/atom/ns#" term="Volume 2"/><title type='text'>ACM - UVA 200 - Rare Order</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;Problem: &lt;a href=&quot;http://uva.onlinejudge.org/index.php?option=com_onlinejudge&amp;amp;Itemid=8&amp;amp;category=4&amp;amp;page=show_problem&amp;amp;problem=136&quot;&gt;200 - Rare Order&lt;/a&gt;&lt;br&gt;
Solution: C++&lt;br&gt;
Hints : &lt;a href=&quot;http://algorithmist.com/index.php/UVa_200&quot;&gt;http://algorithmist.com/index.php/UVa_200&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;&lt;a href=&quot;http://acm-solution.blogspot.com/2011/09/acm-uva-200-rare-order.html#more&quot;&gt;Read more »&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://acm-solution.blogspot.com/feeds/2474854368420085852/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://acm-solution.blogspot.com/2011/09/acm-uva-200-rare-order.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/2474854368420085852'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/2474854368420085852'/><link rel='alternate' type='text/html' href='http://acm-solution.blogspot.com/2011/09/acm-uva-200-rare-order.html' title='ACM - UVA 200 - Rare Order'/><author><name>Nawar</name><uri>http://www.blogger.com/profile/02915122080320414083</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3697489888089030322.post-2387655825313545913</id><published>2011-09-23T04:21:00.001+02:00</published><updated>2011-09-23T04:24:08.082+02:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="C++"/><category scheme="http://www.blogger.com/atom/ns#" term="Volume 100"/><title type='text'>ACM - UVA 154 - Recycling</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;Problem: &lt;a href=&quot;http://uva.onlinejudge.org/index.php?option=com_onlinejudge&amp;amp;Itemid=8&amp;amp;category=3&amp;amp;page=show_problem&amp;amp;problem=90&quot;&gt;154 - Recycling&lt;/a&gt;&lt;br&gt;
Solution: C++&lt;br&gt;
Hints: &lt;a href=&quot;http://algorithmist.com/index.php/UVa_154&quot;&gt;http://algorithmist.com/index.php/UVa_154&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;&lt;a href=&quot;http://acm-solution.blogspot.com/2011/09/acm-uva-154-recycling.html#more&quot;&gt;Read more »&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://acm-solution.blogspot.com/feeds/2387655825313545913/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://acm-solution.blogspot.com/2011/09/acm-uva-154-recycling.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/2387655825313545913'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/2387655825313545913'/><link rel='alternate' type='text/html' href='http://acm-solution.blogspot.com/2011/09/acm-uva-154-recycling.html' title='ACM - UVA 154 - Recycling'/><author><name>Nawar</name><uri>http://www.blogger.com/profile/02915122080320414083</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3697489888089030322.post-3690696322909813224</id><published>2011-09-22T07:15:00.002+02:00</published><updated>2011-09-22T07:23:03.693+02:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="C++"/><category scheme="http://www.blogger.com/atom/ns#" term="Volume 1"/><title type='text'>ACM - UVA 151 - Power Crisis</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;Problem: &lt;a href=&quot;http://uva.onlinejudge.org/index.php?option=com_onlinejudge&amp;amp;Itemid=8&amp;amp;category=3&amp;amp;page=show_problem&amp;amp;problem=87&quot;&gt;151 - Power Crisis&lt;/a&gt;&lt;br&gt;
Solution: C++&lt;br&gt;
Hints: &lt;a href=&quot;http://algorithmist.com/index.php/UVa_151&quot;&gt;http://algorithmist.com/index.php/UVa_151&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;&lt;a href=&quot;http://acm-solution.blogspot.com/2011/09/acm-uva-108-power-crisis.html#more&quot;&gt;Read more »&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://acm-solution.blogspot.com/feeds/3690696322909813224/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://acm-solution.blogspot.com/2011/09/acm-uva-108-power-crisis.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/3690696322909813224'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/3690696322909813224'/><link rel='alternate' type='text/html' href='http://acm-solution.blogspot.com/2011/09/acm-uva-108-power-crisis.html' title='ACM - UVA 151 - Power Crisis'/><author><name>Nawar</name><uri>http://www.blogger.com/profile/02915122080320414083</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3697489888089030322.post-5992692276054809074</id><published>2010-11-16T03:37:00.001+02:00</published><updated>2010-11-16T03:39:25.213+02:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="C++"/><category scheme="http://www.blogger.com/atom/ns#" term="Volume 1"/><title type='text'>ACM - UVA 106 - Fermat vs. Pythagoras</title><content type='html'>&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 14px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &amp;#39;Times New Roman&amp;#39;, serif;&quot;&gt;Problem: &lt;a href=&quot;http://uva.onlinejudge.org/index.php?option=com_onlinejudge&amp;amp;Itemid=8&amp;amp;category=3&amp;amp;page=show_problem&amp;amp;problem=42&quot;&gt;106 - Fermat vs. Pythagoras&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;br&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 14px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &amp;#39;Times New Roman&amp;#39;, serif;&quot;&gt;Solution: C++&lt;/span&gt;&lt;/span&gt;&lt;br&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 14px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &amp;#39;Times New Roman&amp;#39;, serif;&quot;&gt;Hints: &lt;a href=&quot;http://www.algorithmist.com/index.php/UVa_106&quot;&gt;http://www.algorithmist.com/index.php/UVa_106&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;br&gt;
&lt;a href=&quot;http://acm-solution.blogspot.com/2010/11/acm-uva-106-fermat-vs-pythagoras.html#more&quot;&gt;Read more »&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://acm-solution.blogspot.com/feeds/5992692276054809074/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://acm-solution.blogspot.com/2010/11/acm-uva-106-fermat-vs-pythagoras.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/5992692276054809074'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/5992692276054809074'/><link rel='alternate' type='text/html' href='http://acm-solution.blogspot.com/2010/11/acm-uva-106-fermat-vs-pythagoras.html' title='ACM - UVA 106 - Fermat vs. Pythagoras'/><author><name>Nawar</name><uri>http://www.blogger.com/profile/02915122080320414083</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3697489888089030322.post-167460973031485636</id><published>2010-11-15T06:45:00.000+02:00</published><updated>2010-11-15T06:45:59.095+02:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="C++"/><category scheme="http://www.blogger.com/atom/ns#" term="Volume 1"/><title type='text'>ACM - UVA 160 - Factors and Factorials</title><content type='html'>&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 14px;&quot;&gt;&lt;span class=&quot;co2&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &amp;#39;Times New Roman&amp;#39;, serif;&quot;&gt;Problem: &lt;a href=&quot;http://uva.onlinejudge.org/index.php?option=com_onlinejudge&amp;amp;Itemid=8&amp;amp;category=3&amp;amp;page=show_problem&amp;amp;problem=96&quot;&gt;160 - Factors and Factorials&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 14px;&quot;&gt;&lt;span class=&quot;co2&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &amp;#39;Times New Roman&amp;#39;, serif;&quot;&gt;Solution: C++&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 14px;&quot;&gt;&lt;span class=&quot;co2&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &amp;#39;Times New Roman&amp;#39;, serif;&quot;&gt;Hints: &lt;a href=&quot;http://www.algorithmist.com/index.php/UVa_160&quot;&gt;http://www.algorithmist.com/index.php/UVa_160&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br&gt;
&lt;a href=&quot;http://acm-solution.blogspot.com/2010/11/acm-uva-160-factors-and-factorials.html#more&quot;&gt;Read more »&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://acm-solution.blogspot.com/feeds/167460973031485636/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://acm-solution.blogspot.com/2010/11/acm-uva-160-factors-and-factorials.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/167460973031485636'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/167460973031485636'/><link rel='alternate' type='text/html' href='http://acm-solution.blogspot.com/2010/11/acm-uva-160-factors-and-factorials.html' title='ACM - UVA 160 - Factors and Factorials'/><author><name>Nawar</name><uri>http://www.blogger.com/profile/02915122080320414083</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3697489888089030322.post-4466358883976773007</id><published>2010-11-14T07:31:00.002+02:00</published><updated>2010-11-14T07:55:56.857+02:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="C++"/><category scheme="http://www.blogger.com/atom/ns#" term="Volume 1"/><title type='text'>ACM - UVA 120 - Stacks of Flapjacks</title><content type='html'>&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 14px;&quot;&gt;&lt;span class=&quot;co2&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &amp;#39;Times New Roman&amp;#39;, serif;&quot;&gt;Problem: &lt;a href=&quot;http://uva.onlinejudge.org/index.php?option=com_onlinejudge&amp;amp;Itemid=8&amp;amp;category=3&amp;amp;page=show_problem&amp;amp;problem=56&quot;&gt;120 - Stacks of Flapjacks&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 14px;&quot;&gt;&lt;span class=&quot;co2&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &amp;#39;Times New Roman&amp;#39;, serif;&quot;&gt;Solution: C++&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 14px;&quot;&gt;&lt;span class=&quot;co2&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &amp;#39;Times New Roman&amp;#39;, serif;&quot;&gt;Hints: &lt;a href=&quot;http://www.algorithmist.com/index.php/UVa_120&quot;&gt;http://www.algorithmist.com/index.php/UVa_120&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br&gt;
&lt;a href=&quot;http://acm-solution.blogspot.com/2010/11/acm-uva-120-stacks-of-flapjacks.html#more&quot;&gt;Read more »&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://acm-solution.blogspot.com/feeds/4466358883976773007/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://acm-solution.blogspot.com/2010/11/acm-uva-120-stacks-of-flapjacks.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/4466358883976773007'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/4466358883976773007'/><link rel='alternate' type='text/html' href='http://acm-solution.blogspot.com/2010/11/acm-uva-120-stacks-of-flapjacks.html' title='ACM - UVA 120 - Stacks of Flapjacks'/><author><name>Nawar</name><uri>http://www.blogger.com/profile/02915122080320414083</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3697489888089030322.post-8609967703355253271</id><published>2010-11-13T05:01:00.004+02:00</published><updated>2010-11-13T06:48:42.659+02:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="C++"/><category scheme="http://www.blogger.com/atom/ns#" term="Volume 1"/><title type='text'>ACM - UVA 119 - greedy gift givers</title><content type='html'>&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 14px; white-space: nowrap;&quot;&gt;&lt;span class=&quot;co2&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &amp;#39;Times New Roman&amp;#39;, serif;&quot;&gt;Problem: &lt;a href=&quot;http://uva.onlinejudge.org/index.php?option=com_onlinejudge&amp;amp;Itemid=8&amp;amp;category=3&amp;amp;page=show_problem&amp;amp;problem=55&quot;&gt;119 - greedy gift givers&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 14px; white-space: nowrap;&quot;&gt;&lt;span class=&quot;co2&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &amp;#39;Times New Roman&amp;#39;, serif;&quot;&gt;Solution: C++&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 14px; white-space: nowrap;&quot;&gt;&lt;span class=&quot;co2&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &amp;#39;Times New Roman&amp;#39;, serif;&quot;&gt;Hints: &lt;a href=&quot;http://www.algorithmist.com/index.php/UVa_119&quot;&gt;http://www.algorithmist.com/index.php/UVa_119&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br&gt;
&lt;a href=&quot;http://acm-solution.blogspot.com/2010/11/acm-uva-119-greedy-gift-givers.html#more&quot;&gt;Read more »&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://acm-solution.blogspot.com/feeds/8609967703355253271/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://acm-solution.blogspot.com/2010/11/acm-uva-119-greedy-gift-givers.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/8609967703355253271'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/8609967703355253271'/><link rel='alternate' type='text/html' href='http://acm-solution.blogspot.com/2010/11/acm-uva-119-greedy-gift-givers.html' title='ACM - UVA 119 - greedy gift givers'/><author><name>Nawar</name><uri>http://www.blogger.com/profile/02915122080320414083</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3697489888089030322.post-7823454484819288414</id><published>2010-11-12T06:15:00.003+02:00</published><updated>2010-11-12T06:30:15.542+02:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="C++"/><category scheme="http://www.blogger.com/atom/ns#" term="Volume 1"/><title type='text'>ACM - UVA 118 - Mutant Flatworld Explorers</title><content type='html'>Problem: &lt;a href=&quot;http://uva.onlinejudge.org/index.php?option=com_onlinejudge&amp;amp;Itemid=8&amp;amp;category=3&amp;amp;page=show_problem&amp;amp;problem=54&quot;&gt;118 - Mutant Flatworld Explorers&lt;/a&gt;&lt;br&gt;
Solution: C++&lt;br&gt;
Hints:&lt;a href=&quot;http://www.algorithmist.com/index.php/UVa_118&quot;&gt;http://www.algorithmist.com/index.php/UVa_118&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://acm-solution.blogspot.com/2010/11/acm-uva-118-mutant-flatworld-explorers.html#more&quot;&gt;Read more »&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://acm-solution.blogspot.com/feeds/7823454484819288414/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://acm-solution.blogspot.com/2010/11/acm-uva-118-mutant-flatworld-explorers.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/7823454484819288414'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/7823454484819288414'/><link rel='alternate' type='text/html' href='http://acm-solution.blogspot.com/2010/11/acm-uva-118-mutant-flatworld-explorers.html' title='ACM - UVA 118 - Mutant Flatworld Explorers'/><author><name>Nawar</name><uri>http://www.blogger.com/profile/02915122080320414083</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3697489888089030322.post-286705055552908007</id><published>2010-11-06T13:24:00.003+02:00</published><updated>2010-11-06T13:33:10.427+02:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="C++"/><category scheme="http://www.blogger.com/atom/ns#" term="Volume 1"/><title type='text'>ACM - UVA 107 - The Cat in the Hat</title><content type='html'>Problem: &lt;a href=&quot;http://uva.onlinejudge.org/index.php?option=com_onlinejudge&amp;amp;Itemid=8&amp;amp;category=3&amp;amp;page=show_problem&amp;amp;problem=43&quot;&gt;107 - The Cat in the Hat&lt;/a&gt;&lt;br&gt;
Solution: C++&lt;br&gt;
Hints:&lt;a href=&quot;http://www.algorithmist.com/index.php/UVa_107&quot;&gt;http://www.algorithmist.com/index.php/UVa_107&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://acm-solution.blogspot.com/2010/11/acm-uva-107-cat-in-hat.html#more&quot;&gt;Read more »&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://acm-solution.blogspot.com/feeds/286705055552908007/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://acm-solution.blogspot.com/2010/11/acm-uva-107-cat-in-hat.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/286705055552908007'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/286705055552908007'/><link rel='alternate' type='text/html' href='http://acm-solution.blogspot.com/2010/11/acm-uva-107-cat-in-hat.html' title='ACM - UVA 107 - The Cat in the Hat'/><author><name>Nawar</name><uri>http://www.blogger.com/profile/02915122080320414083</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3697489888089030322.post-2757080939104274549</id><published>2010-11-05T06:33:00.002+02:00</published><updated>2010-11-05T19:53:58.287+02:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Java"/><category scheme="http://www.blogger.com/atom/ns#" term="Volume 1"/><title type='text'>ACM - UVA 138 - street numbers (Java)</title><content type='html'>Problem: &lt;a href=&quot;http://uva.onlinejudge.org/index.php?option=com_onlinejudge&amp;amp;Itemid=8&amp;amp;category=3&amp;amp;page=show_problem&amp;amp;problem=74&quot;&gt;138 - street numbers&lt;/a&gt;&lt;br&gt;
Solution: Java&lt;br&gt;
Hints: &lt;a href=&quot;http://www.algorithmist.com/index.php/UVa_138&quot;&gt;http://www.algorithmist.com/index.php/UVa_138&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://acm-solution.blogspot.com/2010/11/acm-uva-138-street-numbers-java.html#more&quot;&gt;Read more »&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://acm-solution.blogspot.com/feeds/2757080939104274549/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://acm-solution.blogspot.com/2010/11/acm-uva-138-street-numbers-java.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/2757080939104274549'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/2757080939104274549'/><link rel='alternate' type='text/html' href='http://acm-solution.blogspot.com/2010/11/acm-uva-138-street-numbers-java.html' title='ACM - UVA 138 - street numbers (Java)'/><author><name>Nawar</name><uri>http://www.blogger.com/profile/02915122080320414083</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3697489888089030322.post-3628119087344832691</id><published>2010-11-05T06:23:00.003+02:00</published><updated>2010-11-05T06:28:00.388+02:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Java"/><category scheme="http://www.blogger.com/atom/ns#" term="Volume 1"/><title type='text'>ACM - UVA 136 - Ugly Numbers (Java)</title><content type='html'>&lt;span style=&quot;color: black;&quot;&gt;Problem: &lt;a href=&quot;http://uva.onlinejudge.org/index.php?option=com_onlinejudge&amp;amp;Itemid=8&amp;amp;category=3&amp;amp;page=show_problem&amp;amp;problem=72&quot;&gt;136 - ugly numbers&lt;/a&gt;&lt;/span&gt;&lt;br&gt;
Solution: Java&lt;br&gt;
Hints: &lt;a href=&quot;http://www.algorithmist.com/index.php/UVa_136&quot;&gt;http://www.algorithmist.com/index.php/UVa_136&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://acm-solution.blogspot.com/2010/11/acm-uva-136-ugly-numbers-java.html#more&quot;&gt;Read more »&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://acm-solution.blogspot.com/feeds/3628119087344832691/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://acm-solution.blogspot.com/2010/11/acm-uva-136-ugly-numbers-java.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/3628119087344832691'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/3628119087344832691'/><link rel='alternate' type='text/html' href='http://acm-solution.blogspot.com/2010/11/acm-uva-136-ugly-numbers-java.html' title='ACM - UVA 136 - Ugly Numbers (Java)'/><author><name>Nawar</name><uri>http://www.blogger.com/profile/02915122080320414083</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3697489888089030322.post-1662286187501821123</id><published>2010-11-04T17:38:00.005+02:00</published><updated>2010-11-04T17:52:49.048+02:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="C++"/><category scheme="http://www.blogger.com/atom/ns#" term="Volume 2"/><title type='text'>ACM - UVA 278 - Chess</title><content type='html'>&lt;span style=&quot;font-size: x-small;&quot;&gt;&lt;span style=&quot;color: black; font-size: x-small;&quot;&gt;Problem: &lt;a href=&quot;http://uva.onlinejudge.org/index.php?option=com_onlinejudge&amp;amp;Itemid=8&amp;amp;category=4&amp;amp;page=show_problem&amp;amp;problem=214&quot;&gt;278 - Chess&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;br&gt;
&lt;span style=&quot;font-size: x-small;&quot;&gt;Solution:C++&lt;/span&gt;&lt;br&gt;
&lt;span style=&quot;font-size: x-small;&quot;&gt;Hints: &lt;a href=&quot;http://www.algorithmist.com/index.php/UVa_278&quot;&gt;http://www.algorithmist.com/index.php/UVa_278&lt;/a&gt;&lt;/span&gt;&lt;br&gt;
&lt;a href=&quot;http://acm-solution.blogspot.com/2010/11/acm-uva-278-chess.html#more&quot;&gt;Read more »&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://acm-solution.blogspot.com/feeds/1662286187501821123/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://acm-solution.blogspot.com/2010/11/acm-uva-278-chess.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/1662286187501821123'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/1662286187501821123'/><link rel='alternate' type='text/html' href='http://acm-solution.blogspot.com/2010/11/acm-uva-278-chess.html' title='ACM - UVA 278 - Chess'/><author><name>Nawar</name><uri>http://www.blogger.com/profile/02915122080320414083</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3697489888089030322.post-4662647568120372778</id><published>2010-11-03T05:28:00.005+02:00</published><updated>2010-11-03T05:45:22.568+02:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="C++"/><category scheme="http://www.blogger.com/atom/ns#" term="Volume 117"/><title type='text'>ACM - UVA 11777 - Automate the Grades</title><content type='html'>&lt;span style=&quot;font-size: x-small;&quot;&gt;&lt;span style=&quot;color: black; font-size: x-small;&quot;&gt;Problem: &lt;a href=&quot;http://uva.onlinejudge.org/index.php?option=com_onlinejudge&amp;amp;Itemid=8&amp;amp;category=117&amp;amp;page=show_problem&amp;amp;problem=2877&quot;&gt;11777 - Automate the Grades&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;br&gt;
&lt;span style=&quot;font-size: x-small;&quot;&gt;Solution: C++&lt;/span&gt;&lt;br&gt;
&lt;span style=&quot;font-size: x-small;&quot;&gt;Hints: &lt;a href=&quot;http://www.algorithmist.com/index.php/UVa_11777&quot;&gt;http://www.algorithmist.com/index.php/UVa_11777&lt;/a&gt;&lt;/span&gt;&lt;br&gt;
&lt;a href=&quot;http://acm-solution.blogspot.com/2010/11/acm-uva-11777-automate-grades.html#more&quot;&gt;Read more »&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://acm-solution.blogspot.com/feeds/4662647568120372778/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://acm-solution.blogspot.com/2010/11/acm-uva-11777-automate-grades.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/4662647568120372778'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/4662647568120372778'/><link rel='alternate' type='text/html' href='http://acm-solution.blogspot.com/2010/11/acm-uva-11777-automate-grades.html' title='ACM - UVA 11777 - Automate the Grades'/><author><name>Nawar</name><uri>http://www.blogger.com/profile/02915122080320414083</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3697489888089030322.post-8688688899171361239</id><published>2010-11-02T04:23:00.005+02:00</published><updated>2010-11-02T16:30:19.456+02:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="C++"/><category scheme="http://www.blogger.com/atom/ns#" term="Volume 1"/><title type='text'>ACM - UVA 103 - Stacking Boxes</title><content type='html'>&lt;span style=&quot;font-size: x-small;&quot;&gt;&lt;span style=&quot;color: black; font-size: x-small;&quot;&gt;Problem: &lt;a href=&quot;http://uva.onlinejudge.org/index.php?option=com_onlinejudge&amp;amp;Itemid=8&amp;amp;category=3&amp;amp;page=show_problem&amp;amp;problem=39&quot;&gt;103 - Stacking Boxes&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;br&gt;
&lt;span style=&quot;font-size: x-small;&quot;&gt;Solution: C++&lt;/span&gt;&lt;br&gt;
&lt;span style=&quot;font-size: x-small;&quot;&gt;Hints: &lt;a href=&quot;http://www.algorithmist.com/index.php/UVa_103&quot;&gt;http://www.algorithmist.com/index.php/UVa_103&lt;/a&gt;&lt;/span&gt;&lt;br&gt;
&lt;a href=&quot;http://acm-solution.blogspot.com/2010/11/acm-uva-103-stacking-boxes.html#more&quot;&gt;Read more »&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://acm-solution.blogspot.com/feeds/8688688899171361239/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://acm-solution.blogspot.com/2010/11/acm-uva-103-stacking-boxes.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/8688688899171361239'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/8688688899171361239'/><link rel='alternate' type='text/html' href='http://acm-solution.blogspot.com/2010/11/acm-uva-103-stacking-boxes.html' title='ACM - UVA 103 - Stacking Boxes'/><author><name>Nawar</name><uri>http://www.blogger.com/profile/02915122080320414083</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3697489888089030322.post-7773499446347652578</id><published>2010-11-01T14:08:00.004+02:00</published><updated>2010-11-06T13:14:40.460+02:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="C++"/><category scheme="http://www.blogger.com/atom/ns#" term="Volume 1"/><title type='text'>ACM - UVA 105 - the skyline problem</title><content type='html'>&lt;span style=&quot;font-size: x-small;&quot;&gt;&lt;span style=&quot;color: black; font-size: x-small;&quot;&gt;Problem: &lt;a href=&quot;http://uva.onlinejudge.org/index.php?option=com_onlinejudge&amp;amp;Itemid=8&amp;amp;category=3&amp;amp;page=show_problem&amp;amp;problem=41&quot;&gt;105 - the skyline problem&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;br&gt;
&lt;span style=&quot;font-size: x-small;&quot;&gt;Solution: C++&lt;/span&gt;&lt;br&gt;
&lt;span style=&quot;font-size: x-small;&quot;&gt;Hints: &lt;a href=&quot;http://www.algorithmist.com/index.php/UVa_105&quot;&gt;http://www.algorithmist.com/index.php/UVa_105&lt;/a&gt;&lt;/span&gt;&lt;br&gt;
&lt;a href=&quot;http://acm-solution.blogspot.com/2010/11/acm-uva-105-skyline-problem.html#more&quot;&gt;Read more »&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://acm-solution.blogspot.com/feeds/7773499446347652578/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://acm-solution.blogspot.com/2010/11/acm-uva-105-skyline-problem.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/7773499446347652578'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/7773499446347652578'/><link rel='alternate' type='text/html' href='http://acm-solution.blogspot.com/2010/11/acm-uva-105-skyline-problem.html' title='ACM - UVA 105 - the skyline problem'/><author><name>Nawar</name><uri>http://www.blogger.com/profile/02915122080320414083</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3697489888089030322.post-5715165721249244002</id><published>2010-11-01T13:49:00.003+02:00</published><updated>2010-11-01T20:35:46.624+02:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Java"/><category scheme="http://www.blogger.com/atom/ns#" term="Volume 1"/><title type='text'>ACM - UVA 100 - The 3n + 1 problem ( java )</title><content type='html'>The problem:&lt;a href=&quot;http://uva.onlinejudge.org/index.php?option=com_onlinejudge&amp;amp;Itemid=8&amp;amp;category=3&amp;amp;page=show_problem&amp;amp;problem=36&quot;&gt;100 - The 3n + 1 problem&lt;/a&gt;&lt;br&gt;
The solution: Java&lt;br&gt;
Hints: &lt;a href=&quot;http://www.algorithmist.com/index.php/UVa_100&quot;&gt;http://www.algorithmist.com/index.php/UVa_100&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://acm-solution.blogspot.com/2010/11/acm-uva-100-3n-1-problem-java.html#more&quot;&gt;Read more »&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://acm-solution.blogspot.com/feeds/5715165721249244002/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://acm-solution.blogspot.com/2010/11/acm-uva-100-3n-1-problem-java.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/5715165721249244002'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/5715165721249244002'/><link rel='alternate' type='text/html' href='http://acm-solution.blogspot.com/2010/11/acm-uva-100-3n-1-problem-java.html' title='ACM - UVA 100 - The 3n + 1 problem ( java )'/><author><name>Nawar</name><uri>http://www.blogger.com/profile/02915122080320414083</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3697489888089030322.post-7921236665954135008</id><published>2010-10-30T06:16:00.004+02:00</published><updated>2010-10-30T06:37:59.947+02:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="C++"/><category scheme="http://www.blogger.com/atom/ns#" term="Volume 100"/><title type='text'>ACM - UVA 10071 - Back to High School Physics</title><content type='html'>&lt;span style=&quot;color: blue; font-size: x-small;&quot;&gt;&lt;span style=&quot;color: blue; font-size: x-small;&quot;&gt;&lt;span style=&quot;color: black;&quot;&gt;Problem: &lt;a href=&quot;http://uva.onlinejudge.org/index.php?option=com_onlinejudge&amp;amp;Itemid=8&amp;amp;category=12&amp;amp;page=show_problem&amp;amp;problem=1012&quot;&gt;10071 - Back to High School Physics&lt;/a&gt;&lt;/span&gt;&lt;br&gt;
&lt;span style=&quot;color: black;&quot;&gt;Solution: C++&lt;/span&gt;&lt;br&gt;
&lt;span style=&quot;color: black;&quot;&gt;Hints:&lt;/span&gt; &lt;a href=&quot;http://www.algorithmist.com/index.php/UVa_10071&quot;&gt;http://www.algorithmist.com/index.php/UVa_10071&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;br&gt;
&lt;a href=&quot;http://acm-solution.blogspot.com/2010/10/problem-solution-c-hints-httpwww.html#more&quot;&gt;Read more »&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://acm-solution.blogspot.com/feeds/7921236665954135008/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://acm-solution.blogspot.com/2010/10/problem-solution-c-hints-httpwww.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/7921236665954135008'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3697489888089030322/posts/default/7921236665954135008'/><link rel='alternate' type='text/html' href='http://acm-solution.blogspot.com/2010/10/problem-solution-c-hints-httpwww.html' title='ACM - UVA 10071 - Back to High School Physics'/><author><name>Nawar</name><uri>http://www.blogger.com/profile/02915122080320414083</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>