結果
問題 | No.1328 alligachi-problem |
ユーザー | 👑 Nachia |
提出日時 | 2020-12-25 00:06:55 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 722 bytes |
コンパイル時間 | 2,193 ms |
コンパイル使用メモリ | 209,228 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-21 17:08:59 |
合計ジャッジ時間 | 9,051 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 3 ms
6,940 KB |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | WA | - |
testcase_10 | AC | 113 ms
6,944 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 113 ms
6,940 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 113 ms
6,944 KB |
testcase_24 | AC | 113 ms
6,940 KB |
testcase_25 | AC | 115 ms
6,940 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; using LL=long long; using ULL=unsigned long long; #define rep(i,n) for(int i=0; i<(n); i++) const string colors = "RB"; int colorid(char c){ return colors.find(c); } struct Ball{ int x,y,i; }; bool cmp_Ball_y(Ball l,Ball r){ return l.y<r.y; } int main(){ int N; cin>>N; vector<Ball> D[2]; rep(i,N){ char c,x; int y; cin>>c>>x>>y; D[colorid(c)].push_back({colorid(x),y,i}); } rep(i,2) sort(D[i].begin(),D[i].end(),cmp_Ball_y); bool ok=true; rep(i,2) rep(j,D[i].size()) if(D[i][j].y!=j) ok=false; if(ok){ cout<<"Yes"<<endl; bool sp=false; rep(i,2) for(auto b:D[i]){ if(sp)cout<<" "; cout<<(b.i+1); sp=true; } cout<<endl; } else cout<<"No"<<endl; return 0; }