5 条题解

  • 0
    @ 2024-4-13 22:24:51
    #include<bits/stdc++.h>
    using namespace std;
    queue<int> a;
    queue<int> b;
    int main(){
    	int m,n,k;
    	cin>>m>>n>>k;
    	for(int i=1; i<= m; i++) a.push(i);
    	for(int i=1; i<= n; i++) b.push(i);
    	for(int i=1; i<=k; i++){
    		cout<<a.front()<<" "<<b.front()<<endl;
    		a.push(a.front());
    		a.pop();
    		b.push(b.front());
    		b.pop();
    	}
    	return 0;
    }
    
    

    信息

    ID
    1496
    时间
    1000ms
    内存
    128MiB
    难度
    3
    标签
    (无)
    递交数
    223
    已通过
    112
    上传者