結果
問題 | No.1328 alligachi-problem |
ユーザー | 沙耶花 |
提出日時 | 2020-12-08 23:07:34 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,091 bytes |
コンパイル時間 | 3,203 ms |
コンパイル使用メモリ | 228,780 KB |
実行使用メモリ | 17,152 KB |
最終ジャッジ日時 | 2024-09-19 04:54:53 |
合計ジャッジ時間 | 10,133 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | AC | 111 ms
5,888 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 112 ms
5,888 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
5,888 KB |
testcase_24 | RE | - |
testcase_25 | AC | 111 ms
5,888 KB |
testcase_26 | WA | - |
testcase_27 | AC | 123 ms
17,152 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i,n) for (int i = 0; i < (n); ++i) #define Inf 1000000000000000000 struct Ball{ char color,ncolor; int ncnt; int ind; }; deque<Ball> red,blue; deque<Ball> ret; map<char,int> mp; void NG(){ cout<<"No"<<endl; exit(0); } void OK(){ cout<<"Yes"<<endl; rep(i,ret.size()){ if(i!=0)printf(" "); printf("%d",ret[i].ind+1); } cout<<endl; exit(0); } void solve(){ while(red.size()!=0||blue.size()!=0){ if(red.size()==0){ if(mp['B']==blue.front().ncnt){ mp[blue.front().color]++; ret.push_back(blue.front()); blue.pop_front(); } else{ return; } } else if(blue.size()==0){ if(mp['R']==red.front().ncnt){ mp[red.front().color]++; ret.push_back(red.front()); red.pop_front(); } else{ return; } } else{ bool f0 = (mp['R']==red.front().ncnt); bool f1 = (mp['B']==blue.front().ncnt); if(!f0&&!f1)return; if(f0&&!f1){ mp[red.front().color]++; ret.push_back(red.front()); red.pop_front(); } else if(!f0){ mp[blue.front().color]++; ret.push_back(blue.front()); blue.pop_front(); } else{ mp[red.front().color]++; ret.push_back(red.front()); red.pop_front(); solve(); red.push_front(ret.back()); ret.pop_back(); mp[red.front().color]--; mp[blue.front().color]++; ret.push_back(blue.front()); blue.pop_front(); solve(); blue.push_front(ret.back()); ret.pop_back(); mp[blue.front().color]--; return; } } } OK(); } int main(){ int N; cin>>N; rep(i,N){ char c,x; int y; cin>>c>>x>>y; Ball b; b.color = c; b.ncolor = x; b.ncnt = y; b.ind = i; if(x=='R')red.push_back(b); else blue.push_back(b); } sort(red.begin(),red.end(),[&](Ball a,Ball b){ if(a.ncnt!=b.ncnt)return a.ncnt<b.ncnt; return a.color<b.color; }); sort(blue.begin(),blue.end(),[&](Ball a,Ball b){ if(a.ncnt!=b.ncnt)return a.ncnt<b.ncnt; return a.color>b.color; }); solve(); NG(); return 0; }