• 个人简介

    奇行种在此😄~~

    woal wotamard laile


    存图

    存个图片(原图)

    /components/profile/backgrounds/1.jpg
    

    (wd!)~~~~

    https://pic1.zhimg.com/v2-7833026878dc2dc10dcd61ad71fbf50c_r.jpg?source=1940ef5c
    

    谢谢,有被6到

    快看


    高亮↓

    #include<bits/stdc++.h>
    using namespace std;
    
    int main(){
    
        return 0;
    }
    

    链表模版(邻接表数组)↓

    #include<bits/stdc++.h>
    using namespace std;
    struct www{
    	int v,pre,nex;
    }w[12342343];
    int head,tail,ans;
    void isR(int p,int x){//在p节点后插入一个值x 
    	int now=++ans;
    	w[now].v=x;
    	w[w[p].nex].pre=now;
    	w[now].nex=w[p].nex;
    	w[now].pre=p;
    	w[p].nex=now;
    }
    void isL(int p,int x){//在p节点前插入一个值x 
    	int now=++ans;
    	w[now].v=x;
    	w[w[p].pre].nex=now;
    	w[now].pre=w[p].pre;
    	w[now].nex=p;
    	w[p].pre=now;
    }
    void rmv(int p){//删除节点p 
    	w[w[p].pre].nex=w[p].nex;
    	w[w[p].nex].pre=w[p].pre;
    }
    int main(){
    	head=1;
    	tail=2;
    	ans=2;
    	w[head].nex=tail;
    	w[tail].pre=head;
    	//请开始你的表演
    	 
    	for(int i=w[head].nex;i!=tail;i=w[i].nex){
    		cout<<w[i].v<<" ";
    	}
    	return 0;
    }
    

    究极int↓

    #include<bits/stdc++.h>
    #define lg long long
    using namespace std;
    
    struct Sp_intest{
      static const int BASE=100000000;
      static const int WIDTH=8;
      vector<int>s;
    
      Sp_intest(long long num=0){*this=num;}
      Sp_intest operator=(long long num){
        s.clear();
        do{
          s.push_back(num%BASE);
          num/=BASE;
        } while(num>0);
        return *this;
      }
      Sp_intest operator=(const string&str){
        s.clear();
        int x,len=(str.length()-1)/WIDTH+1;
        for(int i=0;i<len;i++) {
          int end=str.length()-i*WIDTH;
          int start=max(0,end-WIDTH);
          sscanf(str.substr(start, end-start).c_str(),"%d",&x);
          s.push_back(x);
        }
        return *this;
      }
      Sp_intest operator+(const Sp_intest& b) const{
        Sp_intest c;
        c.s.clear();
        for(int i=0,g=0; ;i++){
          if(g==0&&i>=s.size()&&i>=b.s.size())break;
          int x=g;
          if(i<s.size())x+=s[i];
          if(i<b.s.size())x+=b.s[i];
          c.s.push_back(x%BASE);
          g=x/BASE;
        }
        return c;
      }
    };
    
    ostream&operator<<(ostream &out,const Sp_intest&x){
      out<<x.s.back();
      for(int i=x.s.size()-2;i>= 0;i--) {
        char buf[20];
        sprintf(buf,"%08d",x.s[i]);
        for(int j=0;j<strlen(buf);j++)out<<buf[j];
        }
        return out;
      }
    
    istream&operator>>(istream&in,Sp_intest& x){
      string s;
      if(!(in>>s))return in;
      x=s;
      return in;
    }
    Sp_intest /*知识点*/;
    int main(){
    //请开始你的表演 
    return 0;
    }
    

    数学公式: 1+1=2e21+1=2*e^2i^iπ

    image

    数学

    //漂亮的分界线
    

    最后,蒟蒻的我对你说:bye~

  • 通过的题目

  • 最近活动

    This person is lazy and didn't join any contests or homework.
  • 最近编写的题解

    This person is lazy and didn't write any solutions.
  • Stat

  • Rating

题目标签

模拟
10
NOIp 普及组
9
数学
6
字符串
5
动态规划
5
dp
5
系统测试
4
数论
4
1998
3
字典树
3
枚举
3
暴力
3
高精度
3
背包
3
快速排序
3
排序
3
2004
2
图论
2
递归
2
NOIp 提高组
2