Search found 35 matches: 11790

Searched query: 11790

by Galenroni
Thu Aug 29, 2019 10:37 pm
Forum: General
Topic: in queue... what queue?
Replies: 2201
Views: 395805

GREEK TRADITIONS

Clay Young from Santa Clara was looking for GREEK TRADITIONS

Carlton Doyle found the answer to a search query GREEK TRADITIONS




GREEK TRADITIONS



http://essayerudite.com/images/banner/500x500.jpg


























best analysis essay ...
by Galenroni
Thu Aug 29, 2019 2:06 pm
Forum: General
Topic: in queue... what queue?
Replies: 2201
Views: 395805

essays on social systems

Clyde Webb from Washington was looking for essays on social systems

Sherman Jenkins found the answer to a search query essays on social systems




essays on social systems



http://essayerudite.com/images/banner/500x500.jpg


























books ...
by Brantmup
Thu Aug 29, 2019 10:19 am
Forum: General
Topic: how U can find the volume of a problem ?
Replies: 1457
Views: 276517

dissertation topics on accounting and finance

Jerry Cunningham from Redding was looking for dissertation topics on accounting and finance

Kameron Day found the answer to a search query dissertation topics on accounting and finance



dissertation topics on accounting and finance



http://essayerudite.com/images/banner/500x500.jpg ...
by Galenroni
Wed Aug 28, 2019 6:00 pm
Forum: General
Topic: in queue... what queue?
Replies: 2201
Views: 395805

midnight in the garden of good

Trae Peters from Vallejo was looking for midnight in the garden of good

Fernando Hawkins found the answer to a search query midnight in the garden of good




midnight in the garden of good



http://essayerudite.com/images/banner/500x500.jpg ...
by Brantmup
Mon Aug 26, 2019 8:13 pm
Forum: General
Topic: how U can find the volume of a problem ?
Replies: 1457
Views: 276517

by essay housman i one twenty when

Emanuel Riley from Alameda was looking for by essay housman i one twenty when

Andy Berry found the answer to a search query by essay housman i one twenty when



http://essayerudite.com/images/banner/500x500.jpg


write my essay










one page essay writing hours
table of ...
by Galenroni
Wed Aug 21, 2019 9:22 pm
Forum: General
Topic: in queue... what queue?
Replies: 2201
Views: 395805

how to write the best college admissions essay level 4

Akeem Byrne from Dallas was looking for how to write the best college admissions essay level 4

Ulises Atkinson found the answer to a search query how to write the best college admissions essay level 4




how to write the best college admissions essay level 4



http://essayerudite.com ...
by Mukit Chowdhury
Wed Nov 01, 2017 7:11 pm
Forum: Volume 117 (11700-11799)
Topic: 11790 - Murcia's Skyline
Replies: 28
Views: 21120

Re: 11790 - Murcia's Skyline(TLE)

lighted wrote: Sat Jul 22, 2017 8:43 pm Number of buildings N is at most 1121.
So you did binary search on the size of array!!! :P
by lighted
Sat Jul 22, 2017 8:43 pm
Forum: Volume 117 (11700-11799)
Topic: 11790 - Murcia's Skyline
Replies: 28
Views: 21120

Re: 11790 - Murcia's Skyline(TLE)

suneast wrote: Thu May 20, 2010 4:38 pm u can just asume that N is not larger than 10000 :D
I solved this PRO use O(N^2) BRUTE FORCE...
Mukit Chowdhury wrote: Wed Mar 13, 2013 5:50 pm In this problem array of 1500 elements is enough... no need to check negative number ... My algo is of O(n*n) and Accepted in 0.068 second... :)
Number of buildings N is at most 1121.
by ehsanulbigboss
Sun Dec 27, 2015 7:04 pm
Forum: Volume 117 (11700-11799)
Topic: 11790 - Murcia's Skyline
Replies: 28
Views: 21120

Re: 11790 - Murcia's Skyline

Passes all input data provided by Brian Fry, but still WA!
#include <bits/stdc++.h>
using namespace std;

int n, ans[2000];

int main()
{
int test, t=0;

// freopen("input.txt", "r", stdin);
// freopen("output.txt", "w", stdout);

scanf("%d", &test);
while (test--)
{
scanf("%d", &n);

vector ...
by brianfry713
Tue Jul 08, 2014 6:53 am
Forum: Volume 117 (11700-11799)
Topic: 11790 - Murcia's Skyline
Replies: 28
Views: 21120

Re: 11790 - Murcia's Skyline

Input: 100
6
5 8 4 5 6 4
5 9 7 8 4 6
6
1 3 10 7 7 3
7 3 9 4 7 3
3
7 1 8
3 8 1
4
1 9 4 8
6 9 5 3
1
4
4
10
10 10 4 10 2 5 1 6 6 10
5 9 1 5 2 4 4 6 3 2
9
10 7 5 6 4 9 6 8 7
10 10 2 3 1 10 3 4 6
3
8 10 2
9 6 6
6
3 7 5 9 9 6
1 7 8 2 2 2
5
6 2 4 5 9
4 2 1 4 2
2
6 1
8 10
4
10 4 6 3
5 1 3 6
9
8 9 8 3 3 1 6 ...
by Mukit Chowdhury
Wed Mar 13, 2013 5:50 pm
Forum: Volume 117 (11700-11799)
Topic: 11790 - Murcia's Skyline
Replies: 28
Views: 21120

Re: 11790 - Murcia's Skyline

In this problem array of 1500 elements is enough... no need to check negative number ... My algo is of O(n*n) and Accepted in 0.068 second... :)
by VitezVojko
Tue Apr 17, 2012 8:54 pm
Forum: Volume 117 (11700-11799)
Topic: 11790 - Murcia's Skyline
Replies: 28
Views: 21120

Re: 11790 RTE

Oh, thats the catch :)
That was confusing becouse in problem there werent bounds for n.
thank you alot and sorry that i created new post
by brianfry713
Tue Apr 17, 2012 7:52 pm
Forum: Volume 117 (11700-11799)
Topic: 11790 - Murcia's Skyline
Replies: 28
Views: 21120

Re: 11790 RTE

Next time use the existing thread:
http://acm.uva.es/board/viewtopic.php?t=50432

In there you can see that the number of buildings might be up to 10000. You only allocate space for 100.
by VitezVojko
Tue Apr 17, 2012 6:45 pm
Forum: Volume 117 (11700-11799)
Topic: 11790 - Murcia's Skyline
Replies: 28
Views: 21120

Re: 11790 RTE

I saw somewhere, this was just a try.
with return 0 is also RTE.
by brianfry713
Tue Apr 17, 2012 1:09 am
Forum: Volume 117 (11700-11799)
Topic: 11790 - Murcia's Skyline
Replies: 28
Views: 21120

Re: 11790 RTE

Why did you comment out return 0 at the end?

Go to advanced search