結果
問題 | No.1328 alligachi-problem |
ユーザー | outline |
提出日時 | 2020-12-25 05:32:00 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 111 ms / 2,000 ms |
コード長 | 2,577 bytes |
コンパイル時間 | 1,422 ms |
コンパイル使用メモリ | 135,576 KB |
実行使用メモリ | 30,888 KB |
最終ジャッジ日時 | 2024-09-21 19:49:55 |
合計ジャッジ時間 | 7,881 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 17 ms
22,144 KB |
testcase_01 | AC | 17 ms
22,144 KB |
testcase_02 | AC | 10 ms
22,272 KB |
testcase_03 | AC | 10 ms
22,232 KB |
testcase_04 | AC | 10 ms
22,272 KB |
testcase_05 | AC | 11 ms
22,400 KB |
testcase_06 | AC | 11 ms
22,144 KB |
testcase_07 | AC | 10 ms
22,528 KB |
testcase_08 | AC | 10 ms
22,228 KB |
testcase_09 | AC | 102 ms
29,844 KB |
testcase_10 | AC | 80 ms
29,056 KB |
testcase_11 | AC | 105 ms
29,860 KB |
testcase_12 | AC | 103 ms
29,864 KB |
testcase_13 | AC | 102 ms
29,872 KB |
testcase_14 | AC | 101 ms
29,736 KB |
testcase_15 | AC | 74 ms
28,992 KB |
testcase_16 | AC | 101 ms
29,732 KB |
testcase_17 | AC | 97 ms
29,772 KB |
testcase_18 | AC | 104 ms
29,852 KB |
testcase_19 | AC | 101 ms
29,856 KB |
testcase_20 | AC | 111 ms
29,864 KB |
testcase_21 | AC | 105 ms
29,868 KB |
testcase_22 | AC | 100 ms
29,856 KB |
testcase_23 | AC | 74 ms
28,928 KB |
testcase_24 | AC | 83 ms
30,888 KB |
testcase_25 | AC | 79 ms
30,876 KB |
testcase_26 | AC | 67 ms
28,288 KB |
testcase_27 | AC | 71 ms
28,288 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <cmath> #include <queue> #include <string> #include <map> #include <set> #include <stack> #include <tuple> #include <deque> #include <array> #include <numeric> #include <bitset> #include <iomanip> #include <cassert> #include <chrono> #include <random> #include <limits> #include <iterator> #include <functional> #include <sstream> #include <fstream> #include <complex> #include <cstring> #include <unordered_map> using namespace std; using ll = long long; using P = pair<int, int>; constexpr int INF = 1001001001; constexpr int mod = 1000000007; // constexpr int mod = 998244353; template<class T> inline bool chmax(T& x, T y){ if(x < y){ x = y; return true; } return false; } template<class T> inline bool chmin(T& x, T y){ if(x > y){ x = y; return true; } return false; } // dat[C][X][Y] = i vector<int> dat[2][2][200005]; // cnt[X][Y] = \sum dat[C][X][Y] int cnt[2][200005]; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int N; cin >> N; for(int i = 0; i < N; ++i){ char C, X; int Y; cin >> C >> X >> Y; dat[C == 'B'][X == 'B'][Y].emplace_back(i); } for(int i = 0; i < 2; ++i){ for(int j = 0; j < 2; ++j){ for(int k = 0; k < N; ++k){ cnt[j][k] += dat[i][j][k].size(); } } } vector<int> A, color_cnt(2); bool update = true; while(update){ update = false; for(int i = 0; i < 2; ++i){ // 入れようとしている色 (C) int& ci = color_cnt[i]; // 現在の C の個数 for(int j = 0; j < 2; ++j){ // 制約を与える色 (X) int cj = color_cnt[j]; // 現在の X の個数 if(!dat[i][j][cj].size()) continue; // C == X のとき、制約 (X, Y) が自分自身しかない // C != X のとき、制約 (C, Y) であるものがない if((i == j && cnt[j][cj] == 1) || (i != j && cnt[i][ci] == 0)){ A.emplace_back(dat[i][j][cj].back()); dat[i][j][cj].pop_back(); cnt[j][cj] -= 1; ci += 1; update = true; } } } } if(A.size() < N) cout << "No\n"; else{ cout << "Yes\n"; for(int i = 0; i < N; ++i){ cout << A[i] + 1; cout << ((i == N - 1) ? '\n' : ' '); } } return 0; }