結果
問題 | No.1328 alligachi-problem |
ユーザー | 沙耶花 |
提出日時 | 2020-12-08 23:28:54 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 2,326 bytes |
コンパイル時間 | 2,871 ms |
コンパイル使用メモリ | 231,740 KB |
実行使用メモリ | 25,376 KB |
最終ジャッジ日時 | 2024-09-19 04:55:07 |
合計ジャッジ時間 | 11,700 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
13,884 KB |
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 | AC | 3 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 3 ms
5,376 KB |
testcase_09 | AC | 137 ms
18,688 KB |
testcase_10 | AC | 101 ms
5,888 KB |
testcase_11 | AC | 137 ms
18,688 KB |
testcase_12 | AC | 143 ms
18,816 KB |
testcase_13 | AC | 136 ms
18,688 KB |
testcase_14 | AC | 141 ms
18,688 KB |
testcase_15 | AC | 104 ms
5,888 KB |
testcase_16 | AC | 147 ms
18,816 KB |
testcase_17 | AC | 145 ms
18,688 KB |
testcase_18 | AC | 147 ms
18,816 KB |
testcase_19 | AC | 136 ms
18,816 KB |
testcase_20 | AC | 142 ms
18,688 KB |
testcase_21 | AC | 139 ms
18,688 KB |
testcase_22 | AC | 158 ms
18,816 KB |
testcase_23 | AC | 117 ms
6,016 KB |
testcase_24 | TLE | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
ソースコード
#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(){ if(red.size()==0&&blue.size()==0)OK(); if(red.size()==0){ if(mp['B']==blue.front().ncnt){ 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]--; } } else if(blue.size()==0){ if(mp['R']==red.front().ncnt){ 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]--; } } 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(); solve(); red.push_front(ret.back()); ret.pop_back(); mp[red.front().color]--; } else if(!f0){ 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]--; } 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]--; } } } 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; }