日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

codeforces1407C Chocolate Bunny

發布時間:2023/12/8 编程问答 37 豆豆
生活随笔 收集整理的這篇文章主要介紹了 codeforces1407C Chocolate Bunny 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

https://codeforces.com/contest/1407/problem/C

因為是1-n的排列,那么如果pi%pj<pj%pi,那么一定是pj=pj % pi,每次隨便找兩個沒確定的數字比較一下,一共2*(n-1)次詢問就能找出1-n-1.

#include<bits/stdc++.h> using namespace std; typedef long long ll;const int maxl=3e5+10;int n,m,cnt,tot,cas,ans; int a[maxl]; bool vis[maxl],numin[maxl]; char s[maxl];inline void prework() {scanf("%d",&n); }inline int print(int u,int v) {int x;printf("? %d %d\n",u,v);fflush(stdout);scanf("%d",&x);return x; }inline void mainwork() {if(n==1){printf("! 1");fflush(stdout);return;}int t1,t2,last=1,now;for(int i=1;i<=n-1;i++){for(int j=1;j<=n;j++)if(!vis[j] && last!=j){now=j;break;}t1=print(last,now);t2=print(now,last);if(t1>t2){vis[last]=true;numin[t1]=true;a[last]=t1;last=now;}else{vis[now]=true;numin[t2]=true;a[now]=t2;last=last;}}for(int i=1;i<=n;i++)if(!vis[i])a[i]=n;printf("!");for(int i=1;i<=n;i++)printf(" %d",a[i]);fflush(stdout); }int main() {int t=1;//scanf("%d",&t);for(cas=1;cas<=t;cas++){prework();mainwork(); }return 0; }

?

總結

以上是生活随笔為你收集整理的codeforces1407C Chocolate Bunny的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。