Search found 2 matches

by Ishtiaq11
Sun May 10, 2015 4:58 pm
Forum: Volume 3 (300-399)
Topic: 336 - A Node Too Far
Replies: 121
Views: 58740

Re: 336 - A Node Too Far

Runtime Error
My codes output is right for input given here. But why RE. Please help. :cry:

/*+++++++++++++++++++++++++++++++++++++++++++
@Name: Ishtiaq Pias
@Status: Not Accepted
@Description:
@Date:

+++++++++++++++++++++++++++++++++++++++++++++*/


#include<bits/stdc++.h>
using namespace ...
by Ishtiaq11
Sat Sep 27, 2014 10:10 pm
Forum: Volume 101 (10100-10199)
Topic: 10189 - Minesweeper
Replies: 418
Views: 124945

Re: 10189 - Minesweeper

>>>>>>>>>>Why Time Limit ? :cry: Please help.


#include<cstdio>
#include<iostream>
using namespace std;

int main()
{

int row,col,cnt = 0;
while(true)
{
cin >> row >> col ;
if(row == 0 && col == 0) break;
cnt++;
if(cnt > 1) cout << "\n";
int field[102][102] = {0};

for(int i = 0; i < row ...

Go to advanced search