5 条题解

  • 0
    @ 2024-7-25 11:57:32

    #include<bits/stdc++.h> using namespace std; stacks1; stacks2; int x,y,n; int main(){ cin>>x>>y>>n; for(int i=x;i>=1;i--){ s1.push(i); } for(int i=y;i>=1;i--){ s2.push(i); } while(n>0){ if(s1.empty()){ for(int i=x;i>=1;i--){ s1.push(i); } } if(s2.empty()){ for(int i=y;i>=1;i--){ s2.push(i); } } cout<<s1.top()<<" "<<s2.top()<<endl; n--; s1.pop();s2.pop(); } return 0;zai } //用木戈(zhai)解决

    信息

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