原题链接 无向连通图中,如果删除某边后,图变成不连通,则称该边为桥。 也可以先用Tajan()进行dfs算出所有点 的low和dfn值,并记录dfs过程中每个 点的父节点;然后再把所有点遍历一遍, 看其low和dfn,满足dfn[ fa ]<low[ i ](0<i<=n, i 的 father为f ...
分类:
编程语言 时间:
2018-01-31 18:34:10
阅读次数:
379
作者:CHRISTOPHER POPE 原文連結 Unity 5.4進入到Beta的階段。当中一個特別的功能是光照探頭代理Light Probe Proxy Volume(LPPV)。本篇會向大家介紹什麼是LPPV,並介紹它怎样運作 對Unity5.4beta有興趣能够從這裡下載,必須有Pro的序號 ...
分类:
编程语言 时间:
2018-01-27 22:12:52
阅读次数:
639
{ "pages":[ "pages/index/index", "pages/post/post", "pages/logs/logs" ], "window":{ "backgroundTextStyle":"light", "navigationBarBackgroundColor": "#f... ...
分类:
其他好文 时间:
2018-01-26 18:43:40
阅读次数:
151
http://poj.org/problem?id=3533 变成三维的nim积。。前面那个二维的函数都不用改多nim积一次就过了。。。longlong似乎不必要但是还是加上了 代码 1 #include<cstdio> 2 #include<cstring> 3 #include<algorith ...
分类:
其他好文 时间:
2018-01-24 12:28:22
阅读次数:
176
今天使用Navicat连接Oracle数据库,报了下面的这个错误:“ORA-12737 Instant Client Light:unsupported server character set ZHS16GBK” 从这个错误上看,可以知道是客户端不支持服务器端的字符集造成的,但是修改服务器端的字符 ...
分类:
数据库 时间:
2018-01-20 22:53:04
阅读次数:
204
1、先intsall anaconda 到清华镜像 https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/ bash Ana...... 安装完后无法出现jupyter notebook 解决办法:在bashrc中将默认浏览器设为相应浏览器. 打 ...
分类:
系统相关 时间:
2018-01-18 17:23:17
阅读次数:
874
源码地址: base\services\core\jni\com_android_server_lights_LightsService.cpp 源码分析: 申明JNI接口函数,关注init_native和setLight_native init_native: 先暂时关注LIGHT_ID_BACK ...
分类:
其他好文 时间:
2018-01-16 18:06:48
阅读次数:
199
Factorial of an integer is defined by the following function f(0) = 1 f(n) = f(n - 1) * n, if(n > 0) So, factorial of 5 is 120. But in different bases ...
分类:
其他好文 时间:
2018-01-06 16:03:03
阅读次数:
159
Light libraries是一组通用的C基础库,目标是为减少重复造轮子而写实现了日志、原子操作、哈希字典、红黑树、动态库加载、线程、锁操作、配置文件、os适配层、事件驱动、工作队列、RPC、IPC等基础库,和p2p穿透等网络库全部用POSIX C实现,目标是为了跨平台兼容x86, arm, an ...
分类:
其他好文 时间:
2018-01-06 11:51:32
阅读次数:
163
You task is to find minimal natural number N, so that N! contains exactly Q zeroes on the trail in decimal notation. As you know N! = 1*2*...*N. For e ...
分类:
其他好文 时间:
2018-01-05 20:47:34
阅读次数:
131