Submission #2863928


Source Code Expand

/*{{{*/
#include <bits/stdc++.h>
#ifdef _GLIBCXX_DEBUG
int c_;
#define cout (c_?cerr:cout)
#define dbg(...) {if (!c_)cerr<<"\033[96;1m";++c_;\
__VA_ARGS__;--c_;if(!c_)cerr<<"\033[0m";}
#else
#define dbg(...)
#endif
#define st first
#define nd second
#define dump(...) dbg(print(#__VA_ARGS__,'=',__VA_ARGS__))
#define all(...) begin(__VA_ARGS__), end(__VA_ARGS__)
#define range_dump(...) dbg(cerr<<#__VA_ARGS__<<':';range_print(__VA_ARGS__));
using namespace std; using ll = long long;
template< typename t > using V = vector< t >;
template< typename t > void print(const t& a){cout<<a<<'\n';}
template< typename t, typename... v > void print(const t& a, v&&... b)
{cout<<a<<' ';print(b...);}
template< typename t > void range_print(t a, const t& b)
{while (a!=b)cout<<(*a++)<<' ';cout << '\n';}
/*}}}*/



int main()
{
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int n, m;cin >> n >> m;
    V< pair< int, int > > ilo;

    for (int i = 0; i < n; ++i)
    {
        string s; cin >> s;
        for (int k = 0; k < m; ++k)
            if (s[k] == '#')
                ilo.push_back({i, k});
    }

    for (auto& p : ilo)
        for (auto& q : ilo)
            if (not ((p.st <= q.st and p.nd <= q.nd) or
                (q.st <= p.st and q.nd <= p.nd)))
                return print("Impossible"), 0;

    print("Possible");
}

Submission Info

Submission Time
Task A - Shik and Stone
User snark
Language C++14 (GCC 5.4.1)
Score 200
Code Size 1391 Byte
Status AC
Exec Time 1 ms
Memory 256 KB

Judge Result

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