This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version='1.0' encoding='UTF-8'?> | |
<osm version="0.6" generator="Osmosis 0.38"> | |
<bound box="50.05329,19.93085,50.06532,19.95143" origin="http://www.openstreetmap.org/api/0.6"/> | |
<node id="251690998" version="2" timestamp="2009-08-21T19:43:42Z" uid="123700" user="Mala" changeset="2227224" lat="50.0621521" lon="19.9489259"> | |
<tag k="addr:housenumber" v="26"/> | |
<tag k="addr:street" v="Kopernika"/> | |
<tag k="amenity" v="place_of_worship"/> | |
<tag k="denomination" v="catholic"/> | |
<tag k="name" v="Bazylika Najświętszego Serca Pana Jezusa"/> | |
<tag k="religion" v="christian"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version='1.0' encoding='UTF-8'?> | |
<osm version="0.6" generator="Osmosis 0.38"> | |
<bound box="50.05329,19.93085,50.06532,19.95143" origin="http://www.openstreetmap.org/api/0.6"/> | |
<node id="30375885" version="23" timestamp="2010-06-17T11:14:23Z" uid="295436" user="valek" changeset="5007909" lat="50.0617795" lon="19.9376173"> | |
<tag k="addr:postcode" v="30-001"/> | |
<tag k="is_in" v="województwo małopolskie, Poland"/> | |
<tag k="is_in:continent" v="Europe"/> | |
<tag k="is_in:country" v="Poland"/> | |
<tag k="is_in:county" v="powiat m. Kraków"/> | |
<tag k="is_in:municipality" v="gmina m. Kraków"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2012 (2010)/ I Love You Man (2009)/ Saw V (2008)/ | |
3.10 to Yuma (2007)/ I Love You Philip Morris/ Saw VI (2009)/ | |
40-letni prawiczek (2005)/ Imaginarium of Doctor Parnassus/ Scent of a Woman/ | |
7 Days (2010)/ Inception (2010)/ Seksmisja (1984)/ | |
A Nightmare on Elm Street/ Iron Man 2/ Shank (2010)/ | |
An Education (2009)/ Kingdom of Heaven (2005) - Extended Edition/ She's Out Of My League/ | |
Analyze This (1999)/ Legion (2010)/ Shutter Island/ | |
Back Up (2010)/ Lord of war (2005)/ Smart People/ | |
Californication/ Mad Max/ The Experiment (2010)/ | |
Catalog.xls* Max Payne (2008)/ The Graves (2009)/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <cstdio> | |
#include <algorithm> | |
#include <vector> | |
#define INF 2000000000 | |
#define MAX 10010 | |
using namespace std; | |
int Z, n1, n2, m, result, size; | |
bool visited[MAX]; | |
int top[MAX], bottom[MAX]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<cstdio> | |
#include<vector> | |
#include<iostream> | |
#include<queue> | |
#define INF 2000000000 | |
#define MAX 700 | |
using namespace std; | |
struct edge { | |
int x, y; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<cstdio> | |
#include<vector> | |
#include<algorithm> | |
#define INF 2000000000 | |
using namespace std; | |
struct event { | |
int type; // 0 - start, 1 - end | |
int x; | |
int id; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<cstdio> | |
#include<vector> | |
#define INF 2000000000 | |
#define MAX 10001000 | |
using namespace std; | |
int Z, n, k, max_piece, sum_of_pieces, result; | |
int pieces[MAX]; | |
void load_data(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<cstdio> | |
#include<vector> | |
#define INF 2000000000 | |
using namespace std; | |
int Z, n, k, max_piece, sum_of_pieces, result; | |
vector<int> pieces; | |
void load_data(); | |
void cleaning(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
s = SiteLayoutTemplate.new(:name => "simple (only title)", :html => "<h1>{{ site.title }}</h1>", :css => "body {background-color: {{colors[\"background\"]}};}") | |
s.options = {:colors => {"background" => "#aaa"}} | |
s.save |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<cstdio> | |
#include<vector> | |
#include<iostream> | |
#define INF 2000000000 | |
using namespace std; | |
int Z, n; | |
int A[2004]; | |
int max_P; |