March 11, 2015 at 3:08 AM
发件人 Apple
遇到问题(被拒绝原因)
苹果不让自己检测并提示用户更新了,我们给你截图了,自己看去吧。(貌似是新的审核规定,跪了。。。)
10.6 - Apple and our customers place a high value on simple, refined, creative, well thought th...
分类:
移动开发 时间:
2015-03-11 10:50:58
阅读次数:
174
http://codeforces.com/problemset/problem/274/D这道题解题思路:对每一行统计,以小值列作为弧尾,大值列作为弧头,(-1除外,不连弧),对得到的图做拓扑排序即可.但本题数据较大,所以需要进行缩点,把相同数值的点缩在一起,成为一个新的大点,原先的小值列向大点连...
分类:
编程语言 时间:
2015-03-11 00:24:51
阅读次数:
191
https://leetcode.com/problems/search-a-2d-matrix/Write an efficient algorithm that searches for a value in anmxnmatrix. This matrix has the following ...
分类:
其他好文 时间:
2015-03-10 22:53:55
阅读次数:
181
Question:Write an efficient algorithm that searches for a value in an m x n matrix. This matrix has the following properties:Integers in each row are ...
分类:
其他好文 时间:
2015-03-10 15:23:30
阅读次数:
120
https://leetcode.com/problems/rotate-image/You are given annxn2D matrix representing an image.Rotate the image by 90 degrees (clockwise).Follow up:Cou...
分类:
其他好文 时间:
2015-03-10 12:02:32
阅读次数:
113
1. 2. 实现代码package com.example.myimageview3;import android.app.Activity;import android.graphics.Bitmap;import android.graphics.Matrix;import android.gr...
分类:
移动开发 时间:
2015-03-10 10:12:46
阅读次数:
559
题目:http://codeforces.com/contest/402/problem/E题意:给你一个矩阵a,判断是否存在k,使得a^k这个矩阵全部元素都大于0分析:把矩阵当作01矩阵,超过1的都当作1,那么a矩阵可表示一个有向图的走一次的连通性,则a^k表示有向图走K次的连通性。既然要求最后都...
分类:
移动开发 时间:
2015-03-09 23:48:38
阅读次数:
210
Problem H
Matrix Matcher
Input: Standard Input
Output: Standard Output
Given an N * M matrix, your task is to find the number of occurences of an X * Y pattern.
Input
The first line contai...
分类:
其他好文 时间:
2015-03-09 22:29:58
阅读次数:
212
题意: 用0到2^(n+m-1)这2^(n+m-1)个数填在一个2^n*2^m的矩阵里,使得所有相邻的数的二进制表示只有一位不同.Solution: Gray码。对于第i行第j列的数,由i的Gray码左移m位并上j的Gray码得到。#include using namespace std;int.....
分类:
其他好文 时间:
2015-03-09 20:36:39
阅读次数:
140
关于ScaleType,网上介绍这个枚举对象的文章很多了,不过基本都只是介绍了它的效果。我在做可缩放移动的ImageView时,为了实现图片的缩放和拖动,需要记录图片的原始Matrix,在使用过程中发现,这个原始Matrix和ScaleType有着直接的关系,不同的ScaleType将会直接影响到M...
分类:
移动开发 时间:
2015-03-09 16:08:00
阅读次数:
12268