@root

ykj46 二百五 2024-06-21 21:05:23 2
#include<bits/stdc++.h>
using namespace std;
deque<int> q;
int main(){
	int n,m,x,a,b,c;
	cin>>n>>m;
	while(n--){
		while(m--){
			cin>>x;
			if(x=='1'){
				cin>>a;
				q.push_front(a);
			}
			else if(x=='2'){
				cin>>b;
				if(b=='0') q.pop();
			}
		}
	}
    return 0;
}
{{ vote && vote.total.up }}

共 2 条回复

ykj46 二百五

双端队列怎么pop对头和队尾

ykj46 二百五