算法
......
时间复杂度 O(n)
C++ 代码
#include<iostream>
using namespace std;
int main()
{
int r, y, g;
cin >> r >> y >> g;
int n;
cin >> n;
int res = 0;
while(n--)
{
int k,t;
cin >> k >> t;
if(k==0||k==1)
res += t;
else if(k==2)
res += t + r;
}
cout << res << endl;
}