結果
問題 | No.1328 alligachi-problem |
ユーザー | 沙耶花 |
提出日時 | 2020-12-08 22:49:51 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 2,032 bytes |
コンパイル時間 | 3,007 ms |
コンパイル使用メモリ | 230,180 KB |
実行使用メモリ | 8,704 KB |
最終ジャッジ日時 | 2024-09-19 04:54:42 |
合計ジャッジ時間 | 8,630 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | AC | 133 ms
8,576 KB |
testcase_10 | WA | - |
testcase_11 | AC | 129 ms
8,576 KB |
testcase_12 | AC | 131 ms
8,576 KB |
testcase_13 | AC | 129 ms
8,576 KB |
testcase_14 | AC | 125 ms
8,576 KB |
testcase_15 | WA | - |
testcase_16 | AC | 127 ms
8,576 KB |
testcase_17 | AC | 127 ms
8,704 KB |
testcase_18 | AC | 125 ms
8,576 KB |
testcase_19 | AC | 132 ms
8,576 KB |
testcase_20 | AC | 131 ms
8,576 KB |
testcase_21 | AC | 131 ms
8,576 KB |
testcase_22 | AC | 128 ms
8,576 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 110 ms
8,576 KB |
testcase_27 | AC | 108 ms
8,576 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> solve(deque<Ball> red,deque<Ball> blue){ deque<Ball> ret; map<char,int> mp; 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 ret; } } 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 ret; } } else{ bool f0 = (mp['R']==red.front().ncnt); bool f1 = (mp['B']==blue.front().ncnt); if(!f0&&!f1)return ret; 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{ if(red.front().color=='R'){ mp[red.front().color]++; ret.push_back(red.front()); red.pop_front(); } else if(blue.front().color=='B'){ mp[blue.front().color]++; ret.push_back(blue.front()); blue.pop_front(); } else{ return ret; } } } } return ret; } int main(){ int N; cin>>N; deque<Ball> red,blue; 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; }); deque<Ball> ans = solve(red,blue); if(ans.size()!=N){ cout<<"No"<<endl; } cout<<"Yes"<<endl; rep(i,ans.size()){ if(i!=0)printf(" "); printf("%d",ans[i].ind+1); } cout<<endl; return 0; }