UVA 210 Concurrency Simulator

题目链接:https://vjudge.net/problem/UVA-210

题目大意

  一共有 T 组案例。

  对于每组案例,你的任务是模拟n个程序(按输入顺序编号1~n)的并行执行。每个程序包含不超过25条语句。

  格式一共是5种:赋值(var=constant),打印(print var),lock,unlock,end,耗时分别为$t_1,t_2,t_3,t_4,t_5$?。

  变量用一个小写字母表示,初始时为0,为所有并行程序共有,且它的值始终保持在[0,100]内,所以一个程序对某一个变量的赋值会影响到另外一个程序。

  每个时刻只能是一个程序处于运行状态,其他程序处于等待状态。运行状态之中的的程序每次最多分配Q个单位时间,一旦在未执行完某个程序的某个指令时超过分配时间,则执行完那个指令后,这个程序会被插入等待队列,然后从其的队首取出一个程序继续执行。而初始的等待队列为按照输入程序排入。

  但是由于lock和unlock命令的出现,这个顺序会被改变。

  lock的作用是申请对所有变量的独占访问,unlock则是解除对所有变量的独占访问,且它们一定成对出现。当一个程序已经对所有的变量独占访问后,其他程序若试图执行lock,无论其是否耗尽分配时间,都会被放在一个阻止队列的尾部,且当那个程序解除的时候,则会从阻止队列的头部的程序进入等待队列的头部。

  现在给出$n,t_1,t_2,t_3,t_4,t_5,Q$以及n个程序,你需要输出所有print命令执行输出的值。

  每组案例的输出结果之间空一行。

  翻译搬运自洛谷。

分析

  并行程序模拟,不难,细心即可。

代码如下

  1 #include <bits/stdc++.h>
  2 using namespace std;
  3
  4 #define INIT() ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
  5 #define Rep(i,n) for (int i = 0; i < (n); ++i)
  6 #define For(i,s,t) for (int i = (s); i <= (t); ++i)
  7 #define rFor(i,t,s) for (int i = (t); i >= (s); --i)
  8 #define ForLL(i, s, t) for (LL i = LL(s); i <= LL(t); ++i)
  9 #define rForLL(i, t, s) for (LL i = LL(t); i >= LL(s); --i)
 10 #define foreach(i,c) for (__typeof(c.begin()) i = c.begin(); i != c.end(); ++i)
 11 #define rforeach(i,c) for (__typeof(c.rbegin()) i = c.rbegin(); i != c.rend(); ++i)
 12
 13 #define pr(x) cout << #x << " = " << x << "  "
 14 #define prln(x) cout << #x << " = " << x << endl
 15
 16 #define LOWBIT(x) ((x)&(-x))
 17
 18 #define ALL(x) x.begin(),x.end()
 19 #define INS(x) inserter(x,x.begin())
 20
 21 #define ms0(a) memset(a,0,sizeof(a))
 22 #define msI(a) memset(a,inf,sizeof(a))
 23 #define msM(a) memset(a,-1,sizeof(a))
 24
 25 #define MP make_pair
 26 #define PB push_back
 27 #define ft first
 28 #define sd second
 29
 30 template<typename T1, typename T2>
 31 istream &operator>>(istream &in, pair<T1, T2> &p) {
 32     in >> p.first >> p.second;
 33     return in;
 34 }
 35
 36 template<typename T>
 37 istream &operator>>(istream &in, vector<T> &v) {
 38     for (auto &x: v)
 39         in >> x;
 40     return in;
 41 }
 42
 43 template<typename T1, typename T2>
 44 ostream &operator<<(ostream &out, const std::pair<T1, T2> &p) {
 45     out << "[" << p.first << ", " << p.second << "]" << "\n";
 46     return out;
 47 }
 48
 49 inline int gc(){
 50     static const int BUF = 1e7;
 51     static char buf[BUF], *bg = buf + BUF, *ed = bg;
 52
 53     if(bg == ed) fread(bg = buf, 1, BUF, stdin);
 54     return *bg++;
 55 }
 56
 57 inline int ri(){
 58     int x = 0, f = 1, c = gc();
 59     for(; c<48||c>57; f = c==‘-‘?-1:f, c=gc());
 60     for(; c>47&&c<58; x = x*10 + c - 48, c=gc());
 61     return x*f;
 62 }
 63
 64 typedef long long LL;
 65 typedef unsigned long long uLL;
 66 typedef pair< double, double > PDD;
 67 typedef pair< int, int > PII;
 68 typedef pair< int, PII > PIPII;
 69 typedef pair< string, int > PSI;
 70 typedef pair< int, PSI > PIPSI;
 71 typedef set< int > SI;
 72 typedef vector< int > VI;
 73 typedef vector< VI > VVI;
 74 typedef vector< PII > VPII;
 75 typedef map< int, int > MII;
 76 typedef map< string, int > MSI;
 77 typedef multimap< int, int > MMII;
 78 typedef unordered_map< int, int > uMII;
 79 typedef pair< LL, LL > PLL;
 80 typedef vector< LL > VL;
 81 typedef vector< VL > VVL;
 82 typedef priority_queue< int > PQIMax;
 83 typedef priority_queue< int, VI, greater< int > > PQIMin;
 84 const double EPS = 1e-10;
 85 const LL inf = 0x7fffffff;
 86 const LL infLL = 0x7fffffffffffffffLL;
 87 const LL mod = 1e9 + 7;
 88 const int maxN = 1e5 + 7;
 89 const LL ONE = 1;
 90 const LL evenBits = 0xaaaaaaaaaaaaaaaa;
 91 const LL oddBits = 0x5555555555555555;
 92
 93 struct Instruction{
 94     queue< PIPSI > ins;
 95 }IS[37];
 96 int len;
 97
 98 int n, t[6], Q, T;
 99 deque< int > waitQ; // 等待队列
100 queue< int > blockQ; // 阻塞队列
101 MSI vars; // 存储变量映射
102 bool islock; // 当前是否有锁
103
104 void solve() {
105     while(!waitQ.empty()) {
106         int nowM = waitQ.front();
107         waitQ.pop_front();
108
109         int tmp = 0;
110         queue< PIPSI > &tmpIS = IS[nowM].ins;  // 当前指令队列
111         while(tmp < Q && !tmpIS.empty()) {
112             PIPSI inst = tmpIS.front();
113             tmp += t[inst.ft];
114
115             switch(inst.ft) {
116                 case 1:{
117                     vars[inst.sd.ft] = inst.sd.sd;
118                     break;
119                 }
120                 case 2:{
121                     cout << nowM << ": " << vars[inst.sd.ft] << endl;
122                     break;
123                 }
124                 case 3:{
125                     if(islock) {
126                         blockQ.push(nowM);
127                         tmp = inf;
128                     }
129                     else islock = true;
130                     break;
131                 }
132                 case 4:{
133                     islock = false;
134                     if(!blockQ.empty()) {
135                         waitQ.push_front(blockQ.front());
136                         blockQ.pop();
137                     }
138                     break;
139                 }
140                 case 5: break;
141             }
142             if(tmp != inf) tmpIS.pop();
143         }
144         if(!tmpIS.empty() && tmp != inf) waitQ.PB(nowM);
145     }
146 }
147
148 int main(){
149     //freopen("MyOutput.txt","w",stdout);
150     INIT();
151     cin >> T;
152     while(T--) {
153         cin >> n;
154         For(i, 1, 5) cin >> t[i];
155         cin >> Q;
156         len = 0;
157         vars.clear();
158
159         For(i, 1, n) {
160             string tmp;
161             queue< PIPSI > &tmpIS = IS[++len].ins;
162             waitQ.PB(len);
163
164             while(cin >> tmp) {
165                 if(tmp == "end") {
166                     tmpIS.push(MP(5, MP("", -1)));
167                     break;
168                 }
169                 else if(tmp == "print") {
170                     cin >> tmp;
171                     tmpIS.push(MP(2, MP(tmp, -1)));
172                 }
173                 else if(tmp == "lock") tmpIS.push(MP(3, MP("", -1)));
174                 else if(tmp == "unlock") tmpIS.push(MP(4, MP("", -1)));
175                 else {
176                     string tt;
177                     int x;
178                     cin >> tt >> x;
179                     tmpIS.push(MP(1, MP(tmp, x)));
180                 }
181             }
182         }
183         solve();
184         if(T) cout << endl;
185     }
186     return 0;
187 }

原文地址:https://www.cnblogs.com/zaq19970105/p/10967065.html

时间: 2024-10-11 12:48:23

UVA 210 Concurrency Simulator的相关文章

UVa 210 Concurrency Simulator(双端队列)

题意  模拟程序并行运行 STL队列 双端队列 的应用  用双端队列维护即将执行的程序  再用个队列维护等待变量释放的程序   用lock表示变量锁定状态 先将所有程序依次放到执行队列中  每次取出队首程序运行不超过lim时间  未运行完又放到执行队列队尾 遇到lock时  若当前锁定状态为false就将锁定状态变为true  否则将当前程序放到等待队列队尾并结束运行 遇到unlock时  若等待队列有程序  就将等待队列队首程序放到执行队列队首 遇到end时 退出当前执行(不再进队尾) #in

UVa 210 Concurrency Simulator (双端队列+模拟)

题意:给定n个程序,每种程序有五种操作,分别为 var = constant(赋值),print var (打印), lock, unlock,end. 变量用小写字母表示,初始化为0,为程序所公有(一个程序里对某个变量修改可以会影响其他程序里的这个变量), 常数小于100(也就是说最多两位数). 每个时刻都只能有一个程序处于运行状态,其他的都在等待,上述五种操作用时分别是t1, t2, t3, t4, t5.运行中的程序, 每次最多能运行q个时间,当q个时间被用完后,它会被放在等待队列的尾部,

210 - Concurrency Simulator

Concurrency Simulator PS:这道题目,看懂题意就费了好大功夫.跟着RuJia的程序走了一遍,调试了一遍才明白个大概,只能说基础不是很好,还需要大量的时间学习. PS:因为该题排版较麻烦,这里给出OJ网址:UVa210 - Concurrency Simulator 你的任务是模拟n个程序(按输入顺序编号为1-n)的并行执行.每个程序包含不超过25条语句,格式一共有5种: var = constant(赋值): print var(打印): lock: unlock: end

210 - Concurrency Simulator(WF1991, deque, 模拟)

题目有点长,理解题花了不少时间 粘下别人的翻译~ 你的任务是模拟n个程序(按输入顺序编号为1~n)的并行执行.每个程序包含不超过25条语句,格式一共有5种: var=constant(赋值): print  var(打印): lock: unlock: end. 变量用单个小写字母表示,初始值为0,为所有程序公有(因此在一个程序里对某个变量赋值可能会影响到另一个程序).常数是小于100的非负整数. 每个时刻只能有一个程序处于运行态,其他程序均处于等待.上述五种语句分别需要t1.t2.t3.t4.

210 - Concurrency Simulator【模拟、双端队列】

没有什么特别的,就是按照题意进行模拟,代码有点长... #include<cstdio> #include<queue> #include<map> #include<cstring> #include<algorithm> using namespace std; const int maxn = 222; int n,t[10],q; int Value[maxn]; /* 1 a = 1 2 print 3 lock 4 unlock 5

UVA 11423 - Cache Simulator(树状数组)

UVA 11423 - Cache Simulator 题目链接 题意:题目讲的大概就是几个cash,每次操作可以加入一个或一些数据,如果数据之前有就是hit,命中后的数据就不会消失,如果没有就miss,当容量超过cash容量时,就会把之前最早没命中的一个丢掉,每次START就执行这些命令,计算miss次数并输出 思路:由于最多就2^24的数据,所以可以开一个树状数组,每个位置表示第i个添加进去的数据,并且把每个数据对应的位置记录下来,下次如果添加到一个之前有的数据,就利用树状数组查询上一次到这

UVa210:Concurrency Simulator

Concurrency Simulator Programs executed concurrently on a uniprocessor system appear to be executed at the same time, but in reality the single CPU alternates between the programs, executing some number of instructions from each program before switch

[题解]UVa 11082 Matrix Decompressing

开始眨眼一看怎么也不像是网络流的一道题,再怎么看也觉得像是搜索.不过虽然这道题数据范围很小,但也不至于搜索也是可以随随便便就可以过的.(不过这道题应该是special judge,因为一题可以多解而且题目中然而并没有什么要求,所以说可以考虑思考一下这道题有木有什么"套路"之类的通法) 比如说有这么一组数据 原矩阵 1 2 3 4 7 8 9 5 6 输入 3 3 6 25 45 14 28 45 然后将每一行的和写在每一列对应的行上(很明显有问题) 6 0 0 19 0 0 20 0

UVA 1380 A Scheduling Problem

题目链接:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=4126 $LRJ$紫书例题$9-26$ 题目大意: 给定一颗树 有些边已经标好方向 现在要给其余的边标上方向 使得最长的有向链最短 $HIT:$ 题目额外给了一个结论 假设已经确定方向的边所能得到的最长链为$k$ 最后的最长链一定$k$ 或$k + 1$ 不知道是自己太久没有写树形