Search found 4 matches
- Sat Sep 13, 2014 1:09 am
- Forum: Volume 102 (10200-10299)
- Topic: 10258 - Contest Scoreboard
- Replies: 87
- Views: 48481
Re: 10258 - Contest Scoreboard
Thanks very much brianfry, finally ac after a long time huhhh
- Fri Sep 12, 2014 7:55 am
- Forum: Volume 102 (10200-10299)
- Topic: 10258 - Contest Scoreboard
- Replies: 87
- Views: 48481
Re: 10258 - Contest Scoreboard
Hi Guys, I need ur helps.
I got verdict WA with my code, can u suggest me how to fix it ?
Thanks !
I got verdict WA with my code, can u suggest me how to fix it ?
Thanks !
Code: Select all
REMOVED AFTER AC :D
- Thu Sep 04, 2014 6:59 pm
- Forum: Volume 1 (100-199)
- Topic: 105 - The Skyline Problem
- Replies: 160
- Views: 51624
Re: 105 - The Skyline Problem
Help please, i got WA on this, and i got tired to find where's the failure :(
#include<iostream>
#include<cstdio>
using namespace std;
int pos[10001]={0};
main()
{
int l,h,r;
//freopen("0tes.txt","r",stdin);
while (cin>>l>>h>>r)
{
for (int i=l;i<r;i++){
if (h>pos[i])
pos[i]=h ...
#include<iostream>
#include<cstdio>
using namespace std;
int pos[10001]={0};
main()
{
int l,h,r;
//freopen("0tes.txt","r",stdin);
while (cin>>l>>h>>r)
{
for (int i=l;i<r;i++){
if (h>pos[i])
pos[i]=h ...
- Wed Aug 20, 2014 6:14 pm
- Forum: Volume 103 (10300-10399)
- Topic: 10340 - All in All
- Replies: 129
- Views: 50957
I'm getting WA on 10340 - All in All
Thanks lighted and brianfry! 
