Educational Codeforces Round 85 (Rated for Div. 2) D. Minimum Euler Cycle(字典序最小的欧拉回路)

梦想与她 提交于 2020-04-14 14:26:09

【推荐阅读】微服务还能火多久?>>>

传送门

题意:

在这里插入图片描述

思路:

构造的欧拉回路是
1 2 1 3 1 4 1 5……1 n
2 3 2 4 2 5……2 n
3 4 3 5……3 n
……
n-1 n
1
一共n*(n-1)+1个数
二分取[L,R]的数即可







代码:

#include <iostream>
#include <stdio.h>
#include <algorithm>
#include <string.h>
#include <vector>
#include <math.h>
#include <map>
#include <queue>
#include <set>
#include <stack>
#define pb push_back
#define lb lower_bound
#define ub upper_bound
#define fi first
#define se second
#define all(x) (x).begin(),(x).end()
#define SZ(x) ((int)(x).size())
#define debug(x) cout<<x<<endl
#define rep(i,a,b) for(int i=a;i<=b;i++)
#define per(i,a,b) for(int i=a;i>=b;i--)
typedef long long ll;
using namespace std;
const int MAXN=1e5+50;
const int inf=0x3f3f3f3f;
const int mod=1e9+7;
//::iterator it;
ll a[MAXN];
int main()
{
    std::ios::sync_with_stdio(false),cin.tie(0),cout.tie(0);
    ll n,l,r;
    int t;
    cin>>t;
    while(t--){
        cin>>n>>l>>r;
        for(int i=1;i<=n-1;i++)a[i]=a[i-1]+2*(n-i);
        for(ll i=l;i<=r;i++){
            if(i>a[n-1]){
                cout<<1<<" ";
                continue;
            }
            auto pos=lower_bound(a+1,a+n,i)-a;
            //cout<<pos<<endl;
            int k=i-a[pos-1];
            if(k&1)cout<<pos<<" ";
            else cout<<k/2+pos<<" ";
        }
        cout<<endl;
    }
    return 0;
}
/*

*/

 
 
发布了192 篇原创文章 · 获赞 17 · 访问量 3万+
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!