Submission #36250998


Source Code Expand

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
//#include <atcoder/modint>
//using namespace atcoder;
//using mint = modint998244353;
# define M_PI           3.14159265358979323846  /* pi */
#define watch(x) cout << (#x) << " is " << (x) << endl
 
//#pragma GCC target ("avx2")
#pragma GCC optimization ("O3")
 
//const int MOD = (1e9+7);
template < typename T = int > ostream& operator << (ostream &out, const vector < T > &v){ 
    for (const T &x: v) out << x << ' '; 
    return out;
}
void printmat(const vector<vector<int>>& mat) {
    for (auto row : mat) {
        for (auto elem : row)
            cout << elem << " ";
        cout << "\n";
    }
}
void printdq(const deque<int>& v) {
    for (auto elem : v)
        cout << elem << " ";
    cout << endl;
}
void printv(const vector<int>& v) {
    for (auto elem : v)
        cout << elem << " ";
    cout << "\n";
}
void printvll(const vector<ll>& v) {
    for (auto elem : v)
        cout << elem << " ";
    cout << endl;
}
void printd(const deque<int>& v) {
    for (auto elem : v)
        cout << elem << " ";
    cout << endl;
}
void printvp(const vector<pair<int,int>>& vp) {
    for (auto pr : vp) {
        cout << pr.first << " " << pr.second;
        cout << "\n";
    }
}
void printvs(const vector<set<int>>& vs) {
    for (auto row : vs) {
        for (auto elem : row)
            cout << elem << ", ";
        cout << endl;
    }
}
void printht(const unordered_map<int, int>& ht) {
    for (auto elem : ht)
        cout << elem.first << " : " << elem.second << endl;
}
void printmp(const map<int, int>& ht) {
    for (auto elem : ht)
        cout << elem.first << " : " << elem.second << endl;
}
void printst(const set<int>& st) {
    for (auto elem : st)
        cout << elem << " ";
    cout << endl;
}
 
bool isPrime(long long n) {
    if (n <= 1)
        return false;
    if (n <= 3)
        return true;
    if (n % 2 == 0 || n % 3 == 0)
        return false;
    for (long long i = 5; i * i <= n; i = i + 6)
        if (n % i == 0 || n % (i + 2) == 0)
            return false;
    return true;
}
 
map<long long, long long> primeFactors(long long n) {
    map<long long, long long> ans;
    while (n % 2 == 0) {
        ans[2]++;
        n = n/2;
    }
    for (long long i = 3; i*i <= (n); i = i + 2) {
        while (n % i == 0) {
            ans[i]++;
            n = n/i;
        }
    }
    if (n > 2)
        ans[n]++;
    return ans;
}
 
int find_f(const vector<int>& uf, int i) {
    while (uf[i]!=i)
        i = uf[i];
    return i;
}
bool union_f(vector<int>& uf, vector<int>& sz, int a, int b) {
    a = find_f(uf, a);
    b = find_f(uf, b);
    //cout << "a, b = " << a << ", " << b << endl;
    if (a==b) return false;
    if (sz[a] < sz[b]) {
        //cout << "sz[a], sz[b] = " << sz[a] << ", " << sz[b] << endl;
        //cout << "a, b = " << a << ", " << b << endl;
        swap(a,b);
        //cout << "a, b = " << a << ", " << b << endl;
    }
    sz[a] += sz[b];
    uf[b] = a;
    return true;
}
 
long long modexp(long long b, long long e, long long M) {
    if (!e) return 1;
    b %= M;
    long long x = modexp(b * b % M, e / 2, M);
    if (e % 2) {
        return b * x % M;
    } else {
        return x;
    }
}


ll gcdExtended(ll a, ll b, ll* x, ll* y) {
    if (a == 0) {
        *x = 0, *y = 1;
        return b;
    }
    ll x1, y1;
    ll gcd = gcdExtended(b % a, a, &x1, &y1);
    *x = y1 - (b / a) * x1;
    *y = x1;
    return gcd;
}

ll modInverse(ll a, ll m) {
    ll x, y, res=-1;
    ll g = gcdExtended(a, m, &x, &y);
    if (g != 1) {
        //cout << "Inverse doesn't exist";
        res = -1;
    } else {
        // m is added to handle negative x
        res = (x % m + m) % m;
    }
    return res;
}

int lenOfLIS(vector<int>& v) {        
    int n = v.size(), len = 0;
    vector<int> dp(n,0);
    for (int num : v) {
        int i = lower_bound(dp.begin(), dp.begin()+len, num) - dp.begin();
        dp[i] = num;
        if (i == len) {
            len++;
        }
    }
    return len;        
}

const int MOD = 1e9 + 7;
struct mi {
 	int v; explicit operator int() const { return v; }
	mi() { v = 0; }
	mi(long long _v) : v(_v % MOD) { v += (v < 0) * MOD; }
};
mi& operator+=(mi& a, mi b) { 
	if ((a.v += b.v) >= MOD) a.v -= MOD; 
	return a;
}
mi& operator-=(mi& a, mi b) { 
	if ((a.v -= b.v) < 0) a.v += MOD; 
	return a;
}
mi operator+(mi a, mi b) { return a += b; }
mi operator-(mi a, mi b) { return a -= b; }
mi operator*(mi a, mi b) { return mi((long long) a.v * b.v); }
mi& operator*=(mi& a, mi b) { return a = a * b; }
mi pow(mi a, long long p) {
	assert(p >= 0);
	return p == 0 ? 1 : pow(a * a, p / 2) * (p & 1 ? a : 1);
}
mi inv(mi a) { assert(a.v != 0); return pow(a, MOD - 2); }
mi operator/(mi a, mi b) { return a * inv(b); }

void printvs(const vector<string>& vs) {
    for (const string& s : vs) 
        cout << s << "\n";
}

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);    
    int T=1, caseIdx=0;
    //cin >> T;   
    while (T--) {
        //caseIdx++; 
        int H, W, r0, c0;
        cin >> H >> W;
        bool ok = false;
        //vector<vector<char>> mat(H, vector<char>(W));
        vector<string> vs(H);
        for (int i=0; i<H; i++) {
            cin >> vs[i];
            for (int j=0; j<W; j++) {
                if (vs[i][j]=='S') {
                    r0 = i;
                    c0 = j;
                }
            }
        }
        //cout << r0 << " " << c0 << endl;
        vs[r0][c0] = '#';
        queue<pair<int,int>> q;
        if (r0-1>=0 && vs[r0-1][c0]=='.') {
            vs[r0-1][c0] = 'n';
            q.push(make_pair(r0-1, c0));
        }
        if (r0+1<H && vs[r0+1][c0]=='.') {
            vs[r0+1][c0] = 's';
            q.push(make_pair(r0+1, c0));
        }
        if (c0-1>=0 && vs[r0][c0-1]=='.') {
            vs[r0][c0-1] = 'w';
            q.push(make_pair(r0, c0-1));
        }
        if (c0+1<W && vs[r0][c0+1]=='.') {
            vs[r0][c0+1] = 'e';
            q.push(make_pair(r0, c0+1));
        }
        //printvs(vs);
        while (!q.empty()) {
            queue<pair<int,int>> newq;
            while (!q.empty()) {
                pair<int,int> curr = q.front();
                q.pop();
                int i = curr.first;
                int j = curr.second;
                //cout << "i, j = " << i << ", " << j << endl;
                if (i-1>=0 && vs[i-1][j]=='.') {
                    vs[i-1][j] = vs[i][j];
                    newq.push(make_pair(i-1, j));
                } else if (i-1>=0 && vs[i-1][j]!='#') {
                    if (vs[i-1][j] != vs[i][j]) {
                        ok = true;
                        break;
                    }
                }
                if (i+1<H && vs[i+1][j]=='.') {
                    vs[i+1][j] = vs[i][j];
                    newq.push(make_pair(i+1, j));
                } else if (i+1<H && vs[i+1][j]!='#') {
                    if (vs[i+1][j] != vs[i][j]) {
                        ok = true;
                        break;
                    }
                }
                if (j-1>=0 && vs[i][j-1]=='.') {
                    vs[i][j-1] = vs[i][j];
                    newq.push(make_pair(i, j-1));
                } else if (j-1>=0 && vs[i][j-1]!='#') {
                    if (vs[i][j-1] != vs[i][j]) {
                        ok = true;
                        break;
                    }
                }
                if (j+1<W && vs[i][j+1]=='.') {
                    vs[i][j+1] = vs[i][j];
                    newq.push(make_pair(i, j+1));
                } else if (j+1<W && vs[i][j+1]!='#') {
                    if (vs[i][j+1] != vs[i][j]) {
                        ok = true;
                        break;
                    }
                }                
            }
            if (ok)
                break;
            q = newq;
        }
        //printvs(vs);
        
        string ans = ok ? "Yes" : "No";
        //cout << fixed << setprecision(9);
        cout << ans << "\n";
        //cout << "Case #" << caseIdx << ": " << ans << "\n";   
    }
}










Submission Info

Submission Time
Task E - Round Trip
User llc5pg
Language C++ (GCC 9.2.1)
Score 500
Code Size 8445 Byte
Status AC
Exec Time 30 ms
Memory 4776 KiB

Compile Error

./Main.cpp:11: warning: ignoring #pragma GCC optimization [-Wunknown-pragmas]
   11 | #pragma GCC optimization ("O3")
      | 
./Main.cpp: In function ‘int main()’:
./Main.cpp:206:14: warning: unused variable ‘caseIdx’ [-Wunused-variable]
  206 |     int T=1, caseIdx=0;
      |              ^~~~~~~
./Main.cpp:235:33: warning: ‘c0’ may be used uninitialized in this function [-Wmaybe-uninitialized]
  235 |         if (c0-1>=0 && vs[r0][c0-1]=='.') {
      |                               ~~^~
./Main.cpp:227:29: warning: ‘r0’ may be used uninitialized in this function [-Wmaybe-uninitialized]
  227 |         if (r0-1>=0 && vs[r0-1][c0]=='.') {
      |                           ~~^~

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 500 / 500
Status
AC × 3
AC × 25
Set Name Test Cases
Sample example_00.txt, example_01.txt, example_02.txt
All example_00.txt, example_01.txt, example_02.txt, test_00.txt, test_01.txt, test_02.txt, test_03.txt, test_04.txt, test_05.txt, test_06.txt, test_07.txt, test_08.txt, test_09.txt, test_10.txt, test_11.txt, test_12.txt, test_13.txt, test_14.txt, test_15.txt, test_16.txt, test_17.txt, test_18.txt, test_19.txt, test_20.txt, test_21.txt
Case Name Status Exec Time Memory
example_00.txt AC 5 ms 3632 KiB
example_01.txt AC 2 ms 3532 KiB
example_02.txt AC 2 ms 3512 KiB
test_00.txt AC 4 ms 4684 KiB
test_01.txt AC 7 ms 4472 KiB
test_02.txt AC 7 ms 4568 KiB
test_03.txt AC 7 ms 4156 KiB
test_04.txt AC 7 ms 4760 KiB
test_05.txt AC 7 ms 4432 KiB
test_06.txt AC 7 ms 4672 KiB
test_07.txt AC 10 ms 4776 KiB
test_08.txt AC 2 ms 3620 KiB
test_09.txt AC 2 ms 3632 KiB
test_10.txt AC 2 ms 3628 KiB
test_11.txt AC 16 ms 4524 KiB
test_12.txt AC 30 ms 4492 KiB
test_13.txt AC 14 ms 4612 KiB
test_14.txt AC 6 ms 4324 KiB
test_15.txt AC 4 ms 3964 KiB
test_16.txt AC 3 ms 4212 KiB
test_17.txt AC 6 ms 4416 KiB
test_18.txt AC 4 ms 4176 KiB
test_19.txt AC 4 ms 3964 KiB
test_20.txt AC 6 ms 4252 KiB
test_21.txt AC 6 ms 4500 KiB