zoukankan      html  css  js  c++  java
  • About me & 留言板

    本人名字首字母gzy,就读于gryz,是高二在读生,也是一名oier。
    老婆:远近渔。
    爱好:
    各种体育类项目,(但是不精通,不会打台球),喜欢摄影作品,喜欢听rap和摇滚,也喜欢一些描述生活英文歌曲(现在的口水歌越来越多了,呸)。
    患过声带炎,声音低沉且有些沙哑,不太会唱歌(打算玩全民K歌?没时间了)。
    曾经热爱生活,现在由于学业耽误了。
    非常喜欢《流浪地球》,以前没怎么去过电影院,第一次去电影院支持中国科幻电影。

    我的洛谷账号:sdgzy
    非常欢迎交友
    欢迎加友链
    My CODE:

    /*header*/
    #include <iostream>
    #include <cstdio>
    #include <cstring>
    #include <algorithm>
    #include <vector>
    #include <cmath>
    #include <map>
    #include <queue>
    #define gc getchar()
    #define pc putchar
    #define ll long long
    #define mk make_pair
    #define fi first
    #define se second
    using std::min;
    using std::max;
    using std::swap;
    
    inline int gi() {
      int x = 0,f = 1;char c = gc;
      while(c < '0' || c > '9') {if(c == '-')f = -1;c = gc;}
      while(c >= '0' && c <= '9') {x = x * 10 + c - '0';c = gc;}return x * f;
    }
    
    
  • 相关阅读:
    markdown
    线段树模板
    Trie模板 UVALive 3942 Remember the Word
    使用swift写sprite Kit的模仿微信打飞机游戏
    Graffiti support page
    使用代码控制ScrollView的contentSize
    资料整理
    pd.to_sql()用法
    如何将表格的数据导入到mysql
    安装启动MySQL8.0,报错:1053
  • 原文地址:https://www.cnblogs.com/gzygzy/p/10065790.html
Copyright © 2011-2022 走看看