| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 | 
|---|---|---|---|---|---|---|---|
| 293667 | Aldas25 | 송금 (JOI19_remittance) | C++14 | 1097 ms | 87052 KiB | 
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
//#pragma GCC optimize("O3")
#include <bits/stdc++.h>
//#include <ctime>
using namespace std;
#define FAST_IO ios_base::sync_with_stdio(0); cin.tie(nullptr)
#define FOR(i, a, b) for(int i = (a); i <= (b); i++)
#define REP(n) FOR(O, 1, (n))
#define pb push_back
#define f first
#define s second
typedef long double ld;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<int, pii> piii;
typedef vector<int> vi;
typedef vector<pii> vii;
typedef vector<ll> vl;
typedef vector<piii> viii;
//mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
const int MAXN = 1000100, MAXK = 20;
const ll MOD = 1e9+7;
const ll INF = 1e16;
const ld PI = asin(1) * 2;
void setIO () {
    FAST_IO;
}
void setIO (string s) {
    setIO();
 	freopen((s+".in").c_str(),"r",stdin);
 	freopen((s+".out").c_str(),"w",stdout);
}
int n;
ll a[MAXN], b[MAXN];
map<vi, int> d;
void bfs () {
    queue<vi> q;
    vi st(n);
    FOR(i, 0, n-1) st[i] = a[i];
    d[st] = 1;
    q.push(st);
    while (!q.empty()) {
        st = q.front();
        q.pop();
        //cout << " st: ";
        //for (int x : st) cout << " " << x;
        //cout << "    d = " << d[st] << endl;
        FOR(i, 0, n-1) {
            vi newSt(n);
            FOR(j, 0, n-1) newSt[j] = st[j];
            if (newSt[i] > 1) {
                newSt[i] -= 2;
                newSt[(i+1)%n] ++;
            }
            if (d[newSt] == 0) {
                d[newSt] = d[st] + 1;
                q.push(newSt);
            }
        }
    }
}
int main() {
    setIO();
    cin >> n;
    FOR(i, 0, n-1) cin >> a[i] >> b[i];
    bfs ();
    vi st(n);
    FOR(i, 0, n-1) st[i] = b[i];
    if (d[st] > 0) cout << "Yes\n";
    else cout << "No\n";
	return 0;
}
/*
3
10 7
10 10
10 10
ans: yes
3
3 0
0 0
0 0
ans: no
*/
컴파일 시 표준 에러 (stderr) 메시지
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
