码迷,mamicode.com
首页 > 其他好文
HDR the Bungie Way PPT and demo from MSFT
Gamefest 2006 - HDR the Bungie WayPosted By:Falagard Date:4/26/07 9:53 p.m.In Response To:New Halo 3 shots(KookyBastard): Hey guys, I was looking arou...
分类:其他好文   时间:2014-07-27 21:41:55    阅读次数:387
hoj12839
题目链接:http://acm.hnu.cn/online/?action=problem&type=show&id=12839&courseid=269 水题 debug半天 每一次只考虑当前的数字及前面的那个数字。代码:#include #include #include #include #....
分类:其他好文   时间:2014-07-27 21:41:25    阅读次数:184
VS2008 工程只生成dll不生成lib的解决方案
http://topic.csdn.net/u/20081216/22/b12d1450-7585-4c9f-867a-7c181737c328.html问题:vs2008版本的,不知道为什么只生成dll,不生成lib文件了。解决方案:在工程上右键 -> 添加 -> 新建项 -> 选"模块定义文件(...
分类:其他好文   时间:2014-07-27 21:41:15    阅读次数:227
[ZZ] [siggraph10]color enhancement and rendering in film and game productio
原文link:是siggraph 2010,“Color Enhancement and Rendering in Film and Game Production”course的一个paper。从摄影到电影里面使用的技术,来启发游戏里怎么使用。很不错的一个地方是:了解到了filmic tone m...
分类:其他好文   时间:2014-07-27 21:40:25    阅读次数:305
IT公司100题-1
1 // 题目: 2 // 输入一棵二元查找树,将该二元查找树转换成一个排序的双向链表。 3 // 要求不能创建任何新的结点,只调整指针的指向。 4 5 // 10 6 // / / 7 // 6 14 8 // / / / / 9 // 4 8 12 1610 11...
分类:其他好文   时间:2014-07-27 21:40:16    阅读次数:208
Tasks in parallel
using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;using System.Thre...
分类:其他好文   时间:2014-07-27 21:40:05    阅读次数:203
获取HttpOnly的cookie
/// /// 获取HttpOnly的cookie /// 调用方式如下 /* String hostName = theBrowser.Url.Scheme + Uri.SchemeDelimiter + theBrowser.Url.Host; Uri ho...
分类:其他好文   时间:2014-07-27 21:39:55    阅读次数:418
跨域存取iframe
/// /// 跨域存取iframe /// /// /* HtmlDocument main_formDoc = webBrowser1.Document; IHTMLDocument2 main_mshtmlIHTMLDoc = (IHT...
分类:其他好文   时间:2014-07-27 21:39:35    阅读次数:241
[ZZ] HDR the bungie way
http://blog.csdn.net/toughbro/article/details/6755394bufferencoding游戏float算法bungie 06年,gamefest上的paper。全文讲的比较系统,有空的话还是看原文的比较好,这里摘录一些我觉得很不错的部分。补上微云链接:h...
分类:其他好文   时间:2014-07-27 21:39:15    阅读次数:270
hdu 4869 Turn the pokers
Turn the pokersTime Limit: 2000/1000 MS (Java/Others)Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 1213Accepted Submission(s): 449Prob...
分类:其他好文   时间:2014-07-27 21:38:35    阅读次数:212
Lesson 25-26 Distractions at the Wheel
一 Words 1 distraction 使分心,娱乐,使恼火n e.g. A very clingy child can drive a parent to distraction.一个非常黏人的孩子会让父母不胜其烦。 2 at the wheel 在驾驶室,当主管 e.g. I’ll take...
分类:其他好文   时间:2014-07-27 21:38:15    阅读次数:220
全国第七届大学生计算机设计大赛
这次计算机设计大赛在东北大学,经过了紧张得4天比赛,终于拿到一个不错得成绩,大赛中好多作品让人耳目一新,总结本次比赛收获很多。有图有真相
分类:其他好文   时间:2014-07-27 21:37:45    阅读次数:256
UESTC 2014 Summer Training #10 Div.2
B.Race to 1UVA 11762 第一次接触概率dp,完全没想到是dp...没想到能递推出来0 0 首先需要知道 总的期望=每件事的期望×每件事发生的概率 然后可以根据这个来写递推公式,也是dp? 假设不小于x的质数有m个,x的质因子有n个(种 更确切),那么在求X的期望时,可以考虑...
分类:其他好文   时间:2014-07-27 21:37:35    阅读次数:280
HDU 1754 I Hate It (线段树)
简单的线段树,多余的就不解释了。 1 #include 2 #include 3 4 using namespace std; 5 #define INF 0xffffff0 6 #define max(a,b) (a>b?a:b) 7 #define min(a,b) (a Tree[root]....
分类:其他好文   时间:2014-07-27 21:37:10    阅读次数:216
【CDOJ931】Car race game(树状数组求逆序)
题目连接:http://acm.uestc.edu.cn/#/problem/show/931OJ评判系统有些坑,不支持__int64以及输出的%I64d大家注意。全开long long也会TLE,比较坑。逆序的基础操作题,不错。 1 #include 2 #define MAX 100010 3....
分类:其他好文   时间:2014-07-27 21:36:45    阅读次数:207
hdu 1598 find the most comfortable road
贪心+并查集fighting~~~~~!! 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 #define maxn 300 7 #define INF 0x3fffffff 8 int par[maxn]; ...
分类:其他好文   时间:2014-07-27 21:36:35    阅读次数:182
Poj 2391 二分答案+最大流+拆点
时限卡的非常紧,做尽常数优化才过。。#include #include #include #include #include #include #include #include #include #include #include #include #include using namespace...
分类:其他好文   时间:2014-07-27 21:36:15    阅读次数:249
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!