Submission #980065


Source Code Expand

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

int H, W;
string field[8];

int solve(int x, int y) {
  if (x == H-1 && y == W-1) return 1;

  if (x == H || y == W) return 0;
  if (field[x+1][y] == '#' && field[x][y+1] == '#') {
    return 0;
  } else if (field[x+1][y] == '.' && field[x][y+1] == '.') {
    return 0;
  } else {
    if (field[x+1][y] == '#') {
      return solve(x+1, y); 
    } else {
      return solve(x, y+1);
    }
  }
}

int main() {
  cin >> H >> W;
  for (int i=0; i<H; i++) {
    cin >> field[i];
  }

  if (solve(0, 0) == 1) {
    cout << "Possible" << endl;
  } else {
    cout << "Impossible" << endl;
  }

  return 0;
}

Submission Info

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

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 200
Status
AC × 3
AC × 18
WA × 2
RE × 2
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 3 ms 256 KB
001.txt WA 3 ms 256 KB
002.txt AC 3 ms 256 KB
003.txt AC 3 ms 256 KB
004.txt WA 3 ms 256 KB
005.txt AC 3 ms 256 KB
006.txt AC 3 ms 256 KB
007.txt AC 3 ms 256 KB
008.txt AC 3 ms 256 KB
009.txt AC 3 ms 256 KB
010.txt AC 3 ms 256 KB
011.txt AC 3 ms 256 KB
012.txt AC 3 ms 256 KB
013.txt AC 3 ms 256 KB
014.txt RE 111 ms 256 KB
015.txt AC 3 ms 256 KB
016.txt RE 112 ms 256 KB
017.txt AC 3 ms 256 KB
018.txt AC 3 ms 256 KB
example0.txt AC 3 ms 256 KB
example1.txt AC 3 ms 256 KB
example2.txt AC 3 ms 256 KB