using System; using System.Linq; using System.Linq.Expressions; using System.Collections.Generic; using Debug = System.Diagnostics.Debug; using StringBuilder = System.Text.StringBuilder; using System.Numerics; using Point = System.Numerics.Complex; using Number = System.Int32; namespace Program { public class Solver { public void Solve() { var n = sc.Integer(); var a = sc.Integer(n); var b = new int[n]; var T = sc.Integer(); var s = new string[T]; var p = new char[T]; for (int i = 0; i < T; i++) { s[i] = sc.Scan(); p[i] = sc.Char(); } var ss = s.Distinct().OrderBy(x => x, StringComparer.Ordinal).ToArray(); var tree = new AVLTree(); for (int i = 0; i < ss.Length; i++) tree.Add(0); var A = new long[ss.Length]; var B = new long[ss.Length]; for (int i = 0; i < T; i++) { var id = Array.BinarySearch(ss, s[i], StringComparer.Ordinal); if (p[i] == '?') { var pos = tree.LowerBound(A[id]); IO.Printer.Out.WriteLine(ss.Length - pos); } else { tree.Remove(A[id]); var q = p[i] - 'A'; b[q]++; B[id] += get(a[q], b[q]) * 1000000L; A[id] = B[id] - i; tree.Add(A[id]); } } } public long get(int x, int k) { return x * 50 + 500 * x / (8 + 2 * k); } public IO.StreamScanner sc = new IO.StreamScanner(Console.OpenStandardInput()); static T[] Enumerate(int n, Func f) { var a = new T[n]; for (int i = 0; i < n; ++i) a[i] = f(i); return a; } static public void Swap(ref T a, ref T b) { var tmp = a; a = b; b = tmp; } } } #region main static class Ex { static public string AsString(this IEnumerable ie) { return new string(System.Linq.Enumerable.ToArray(ie)); } static public string AsJoinedString(this IEnumerable ie, string st = " ") { return string.Join(st, ie); } static public void Main() { var solver = new Program.Solver(); solver.Solve(); Program.IO.Printer.Out.Flush(); } } #endregion #region Ex namespace Program.IO { using System.IO; using System.Text; using System.Globalization; public class Printer: StreamWriter { static Printer() { Out = new Printer(Console.OpenStandardOutput()) { AutoFlush = false }; } public static Printer Out { get; set; } public override IFormatProvider FormatProvider { get { return CultureInfo.InvariantCulture; } } public Printer(System.IO.Stream stream) : base(stream, new UTF8Encoding(false, true)) { } public Printer(System.IO.Stream stream, Encoding encoding) : base(stream, encoding) { } public void Write(string format, T[] source) { base.Write(format, source.OfType().ToArray()); } public void WriteLine(string format, T[] source) { base.WriteLine(format, source.OfType().ToArray()); } } public class StreamScanner { public StreamScanner(Stream stream) { str = stream; } public readonly Stream str; private readonly byte[] buf = new byte[1024]; private int len, ptr; public bool isEof = false; public bool IsEndOfStream { get { return isEof; } } private byte read() { if (isEof) return 0; if (ptr >= len) { ptr = 0; if ((len = str.Read(buf, 0, 1024)) <= 0) { isEof = true; return 0; } } return buf[ptr++]; } public char Char() { byte b = 0; do b = read(); while ((b < 33 || 126 < b) && !isEof); return (char)b; } public string Scan() { var sb = new StringBuilder(); for (var b = Char(); b >= 33 && b <= 126; b = (char)read()) sb.Append(b); return sb.ToString(); } public string ScanLine() { var sb = new StringBuilder(); for (var b = Char(); b != '\n'; b = (char)read()) if (b == 0) break; else if (b != '\r') sb.Append(b); return sb.ToString(); } public long Long() { if (isEof) return long.MinValue; long ret = 0; byte b = 0; var ng = false; do b = read(); while (b != 0 && b != '-' && (b < '0' || '9' < b)); if (b == 0) return long.MinValue; if (b == '-') { ng = true; b = read(); } for (; true; b = read()) { if (b < '0' || '9' < b) return ng ? -ret : ret; else ret = ret * 10 + b - '0'; } } public int Integer() { return (isEof) ? int.MinValue : (int)Long(); } public double Double() { var s = Scan(); return s != "" ? double.Parse(s, CultureInfo.InvariantCulture) : double.NaN; } private T[] enumerate(int n, Func f) { var a = new T[n]; for (int i = 0; i < n; ++i) a[i] = f(); return a; } public char[] Char(int n) { return enumerate(n, Char); } public string[] Scan(int n) { return enumerate(n, Scan); } public double[] Double(int n) { return enumerate(n, Double); } public int[] Integer(int n) { return enumerate(n, Integer); } public long[] Long(int n) { return enumerate(n, Long); } } } #endregion #region AVLTree public class AVLTree { Node nil = new NilNode(); Node root { get { return nil.lst; } } public AVLTree() { nil.lst = nil.rst = nil; } public int Count { get { return nil.lst.cnt; } } public long Value { get { return root.val; } } public void Add(long v) { Insert(v, LowerBound(v)); } public bool Remove(long v) { if (EqualRange(v) == 0) return false; RemoveAt(LowerBound(v)); return true; } #region Impl public void Insert(long v, int k) { Node p = nil, t = nil.lst; if (t.cnt < k) throw new IndexOutOfRangeException(); var isL = true; while (t != nil) { if (t.lst.cnt >= k) { p = t; t = t.lst; isL = true; } else { k -= (t.lst.cnt + 1); p = t; t = t.rst; isL = false; } } if (isL) { p.lst = CreateNode(v, p); Balance(true, p.lst); } else { p.rst = CreateNode(v, p); Balance(true, p.rst); } } public void RemoveAt(int k) { var t = nil.lst; while (t != nil) { if (t.lst.cnt > k) { t = t.lst; } else if (t.lst.cnt < k) { k -= t.lst.cnt + 1; t = t.rst; } else { if (t.lst == nil) { Node.Replace(t, t.rst); Balance(false, t.rst); } else { var m = GetMaxNode(t.lst); t.val = m.val; Node.Replace(m, m.lst); Balance(false, m.lst); } return; } } } public int EqualRange(long v) { return UpperBound(v) - LowerBound(v); } public int LowerBound(long v) { return lowerBound(nil.lst, v); } public int UpperBound(long v) { return upperBound(nil.lst, v); } public long this[int k] { get { return find(nil.lst, k); } } int lowerBound(Node t, long v) { if (t.cnt == 0) return 0; if (v <= t.val) return lowerBound(t.lst, v); else return t.lst.cnt + 1 + lowerBound(t.rst, v); } int upperBound(Node t, long v) { if (t.cnt == 0) return 0; if (t.val <= v) return t.lst.cnt + 1 + upperBound(t.rst, v); else return upperBound(t.lst, v); } long find(Node t, int k) { if (t.cnt <= k) throw new IndexOutOfRangeException(); if (k == t.lst.cnt) return t.val; else if (k < t.lst.cnt) return find(t.lst, k); else return find(t.rst, k - (t.lst.cnt + 1)); } #endregion class Node { int h; public int cnt; //public int Count { get { return cnt; } } public int Height { get { return h; } } public int Bias { get { return lst.Height - rst.Height; } } internal long val; internal Node par, lst, rst; internal bool rev; internal Node() { } internal Node(long v, Node p) { h = 1; cnt = 1; val = v; par = p; } public void Update() { h = 1 + Math.Max(lst.h, rst.h); cnt = 1 + lst.cnt + rst.cnt; } public override string ToString() { return string.Format("count:{0}, value:{1}", cnt, val); } #region Impl static internal void Replace(Node u, Node v) { var p = u.par; if (p.lst == u) p.lst = v; else p.rst = v; v.par = p; } static internal Node RotateL(Node v) { Node u = v.rst; Replace(v, u); v.rst = u.lst; u.lst.par = v; u.lst = v; v.par = u; v.Update(); u.Update(); return u; } static internal Node RotateR(Node u) { var v = u.lst; Replace(u, v); u.lst = v.rst; v.rst.par = u; v.rst = u; u.par = v; u.Update(); v.Update(); return v; } static internal Node RotateLR(Node t) { RotateL(t.lst); return RotateR(t); } static internal Node RotateRL(Node t) { RotateR(t.rst); return RotateL(t); } #endregion } class NilNode: Node { public override string ToString() { return "nil"; } } Node CreateNode() { return new Node() { lst = nil, rst = nil }; } Node CreateNode(long v, Node p) { return new Node(v, p) { lst = nil, rst = nil }; } void Balance(bool onInsert, Node t) { while (t.par != nil) { var u = t.par; var h = u.Height; if ((u.lst == t) == onInsert) { if (u.Bias == 2) { if (u.lst.Bias >= 0) u = Node.RotateR(u); else u = Node.RotateLR(u); } else u.Update(); } else { if (u.Bias == -2) { if (u.rst.Bias <= 0) u = Node.RotateL(u); else u = Node.RotateRL(u); } else u.Update(); } if (h == u.Height) break; t = u; } while (t.par != nil) { t.par.Update(); t = t.par; } } Node GetMaxNode(Node t) { while (t.rst != nil) t = t.rst; return t; } } #endregion