Submission #979075


Source Code Expand

#include <iostream>
#include <algorithm>
#include <cmath>
#include <vector>
#include <string>
#define ll long long 
#define fr(i,n) for(int i=0;i<n;i++)
#define pb push_back
#define inf (1<<31)
#define xx first
#define yy second

using namespace std;

int main() {
	ios::sync_with_stdio(0);
	int h,w;
	cin>>h>>w;
	char a[h][w];
	fr(i,h){
	    fr(j,w){
	        cin>>a[i][j]    ;
	    }
	}
	int x,y,f=1;
	x=0,y=0;
	while(f && !(x==h-1 && y==w-1) ){
	    if(x==h-1){
	        a[x][y+1]='.';
	        y++;
	    }    
	    else if(y==w-1){
	        a[x+1][y]='.';
	        x++;
	    }    
	    else{
	        if(a[x+1][y]=='#'){
	            a[x+1][y]='.'; 
	            x++;
	        }
	        else if(a[x][y+1]=='#'){
	             a[x][y+1]='.';
	             y++;
	        }
	        else
	            f--;
	       
	    }
//	    cout<<x<<' '<<y;
	}    
	int l=0;    
	    fr(i,h){
	        fr(j,w){
	            if(!a[i][j]=='.');
	                l--;
	        }
	    }
	 if(l)
	    cout<<"Impossible";
	 else
	    cout<<"Possible";
	
	return 0;
}

Submission Info

Submission Time
Task A - Shik and Stone
User sid64
Language C++14 (GCC 5.4.1)
Score 0
Code Size 1113 Byte
Status WA
Exec Time 3 ms
Memory 256 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 200
Status
AC × 2
WA × 1
AC × 10
WA × 12
Set Name Test Cases
Sample example0.txt, example1.txt, example2.txt
All 000.txt, 001.txt, 002.txt, 003.txt, 004.txt, 005.txt, 006.txt, 007.txt, 008.txt, 009.txt, 010.txt, 011.txt, 012.txt, 013.txt, 014.txt, 015.txt, 016.txt, 017.txt, 018.txt, example0.txt, example1.txt, example2.txt
Case Name Status Exec Time Memory
000.txt AC 2 ms 256 KB
001.txt AC 2 ms 256 KB
002.txt AC 2 ms 256 KB
003.txt AC 2 ms 256 KB
004.txt AC 2 ms 256 KB
005.txt AC 2 ms 256 KB
006.txt AC 2 ms 256 KB
007.txt AC 2 ms 256 KB
008.txt WA 2 ms 256 KB
009.txt WA 2 ms 256 KB
010.txt WA 3 ms 256 KB
011.txt WA 2 ms 256 KB
012.txt WA 2 ms 256 KB
013.txt WA 2 ms 256 KB
014.txt WA 2 ms 256 KB
015.txt WA 2 ms 256 KB
016.txt WA 2 ms 256 KB
017.txt WA 2 ms 256 KB
018.txt WA 2 ms 256 KB
example0.txt WA 2 ms 256 KB
example1.txt AC 3 ms 256 KB
example2.txt AC 2 ms 256 KB