<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="http://cs1.utm.edu/icpc/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="http://cs1.utm.edu/icpc/feed.php">
        <title>UT Martin Competitive Programming Guidebook files:cpp</title>
        <description></description>
        <link>http://cs1.utm.edu/icpc/</link>
        <image rdf:resource="http://cs1.utm.edu/icpc/lib/tpl/dokuwiki/images/favicon.ico" />
       <dc:date>2026-05-17T14:27:28+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="http://cs1.utm.edu/icpc/doku.php?id=files:cpp:hello&amp;rev=1533831808&amp;do=diff"/>
                <rdf:li rdf:resource="http://cs1.utm.edu/icpc/doku.php?id=files:cpp:primesieve&amp;rev=1536960905&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="http://cs1.utm.edu/icpc/lib/tpl/dokuwiki/images/favicon.ico">
        <title>UT Martin Competitive Programming Guidebook</title>
        <link>http://cs1.utm.edu/icpc/</link>
        <url>http://cs1.utm.edu/icpc/lib/tpl/dokuwiki/images/favicon.ico</url>
    </image>
    <item rdf:about="http://cs1.utm.edu/icpc/doku.php?id=files:cpp:hello&amp;rev=1533831808&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2018-08-09T11:23:28+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>files:cpp:hello</title>
        <link>http://cs1.utm.edu/icpc/doku.php?id=files:cpp:hello&amp;rev=1533831808&amp;do=diff</link>
        <description>Hello World in C++


#include &lt;iostream&gt;

using namespace std;

int main() {
  cout &lt;&lt; &quot;Hello World!&quot; &lt;&lt; endl;
  
  return 0;
}


“Hello World!” in C++ in 107 characters.</description>
    </item>
    <item rdf:about="http://cs1.utm.edu/icpc/doku.php?id=files:cpp:primesieve&amp;rev=1536960905&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2018-09-14T16:35:05+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>files:cpp:primesieve</title>
        <link>http://cs1.utm.edu/icpc/doku.php?id=files:cpp:primesieve&amp;rev=1536960905&amp;do=diff</link>
        <description>Kattis: Prime Sieve

C++ Source


#include &lt;bitset&gt;
#include &lt;cmath&gt;
#include &lt;vector&gt;
#include &lt;iostream&gt;

using namespace std;
 
const int MAX_PRIMES=100000000;   // Note the problem bounds (up to 10^8)
//vector&lt;int&gt; primes;             // Note the restrictive memory limit: 50MB is probably too small for all the primes!
                                  // 4 bytes/int * 5761455 primes ~ 22 MB alone!

 
bitset&lt;MAX_PRIMES&gt; nums;          // true for each prime
vector&lt;int&gt; primes;               /…</description>
    </item>
</rdf:RDF>
